-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
143 lines (120 loc) · 4.36 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
using System.ComponentModel;
using System.Reflection.PortableExecutable;
using System.Runtime.CompilerServices;
using System.Security.Cryptography.X509Certificates;
using Microsoft.Data.SqlClient;
class SqlConnector
{
public string ConnectionString { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public SqlConnection sqlConnection = new SqlConnection();
public SqlConnector(string ConnectString, string User,string Pass)
{
this.ConnectionString = ConnectString;
this.UserName = User;
this.Password = Pass;
}
public void RunSqlConnect()
{
Console.WriteLine("Sql connection started!");
Console.WriteLine("-----------------------");
this.sqlConnection.ConnectionString = this.ConnectionString;
this.sqlConnection.Open();
RunCommand("SELECT * FROM Emps");
this.sqlConnection.Close();
}
public void RunCommand(string Command)
{
using (SqlCommand cmd = new SqlCommand(Command, this.sqlConnection))
{
using (SqlDataReader rdr = cmd.ExecuteReader())
{
while (rdr.Read())
{
Console.WriteLine($"Name: {rdr["FirstName"]}");
}
}
}
}
public void AddEmployee(string EmployeeFirstName, string EmployeeLastName)
{
int AssignNumber = FindNumberOfEmployees() + 1;
string cmd = $"INSERT INTO Emps(EmployeeID,FirstName,LastName) VALUES(@EmployeeID1,@FirstName,@LastName);";
this.sqlConnection.Open();
using (SqlCommand cmdd = new SqlCommand(cmd, this.sqlConnection))
{
cmdd.Parameters.AddWithValue("@EmployeeID1", AssignNumber);
cmdd.Parameters.AddWithValue("@FirstName", EmployeeFirstName);
cmdd.Parameters.AddWithValue("@LastName", EmployeeLastName);
Console.WriteLine("--------------------------------------");
int RowsAffected = cmdd.ExecuteNonQuery();
Console.WriteLine($"{RowsAffected} Rows Affected:");
}
this.sqlConnection.Close();
}
public void DeleteEmployee()
{
//continue here
}
public void UpdateEmployeeInfo()
{
//continue here
}
public void PrintTable()
{
using (SqlConnection conn = new SqlConnection(this.ConnectionString))
{
using (SqlCommand cmd = new SqlCommand("SELECT EmployeeID,FirstName,LastName FROM Emps", conn))
{
conn.Open();
using (SqlDataReader read = cmd.ExecuteReader())
{
Console.WriteLine("EmployeeID|FirstName|LastName");
while (read.Read())
{
Console.WriteLine($"{read["EmployeeID"]} |{read["FirstName"]} |{read["LastName"]}");
}
}
}
conn.Close();
}
}
public int FindNumberOfEmployees()
{
List<int> NumberOfEmps = new List<int>();
string comm = "SELECT EmployeeID FROM Emps";
this.sqlConnection.Open();
using (SqlCommand cmd = new SqlCommand(comm,this.sqlConnection))
{
using (SqlDataReader rdr = cmd.ExecuteReader())
{
while (rdr.Read())
{
NumberOfEmps.Add(Convert.ToInt32(rdr["EmployeeID"]));
}
}
}
this.sqlConnection.Close();
if (NumberOfEmps.Count == 0)
{
return 0;
}
return NumberOfEmps.Last();
}
}
class Program()
{
static void Main()
{
SqlConnector NewSql = new SqlConnector("data source=DESKTOP-V002898\\SQLEXPRESS;initial catalog=master;trusted_connection=true;Encrypt=False", "DESKTOP-V002898\\onixt","");
Console.WriteLine("This program has started!");
Console.WriteLine("------------------------");
Console.WriteLine("------------------------");
NewSql.RunSqlConnect();
NewSql.AddEmployee("John","Doe");
NewSql.AddEmployee("Jane", "Doe");
NewSql.AddEmployee("Janet", "Jackson");
NewSql.PrintTable();
}
}