-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployee.cs
160 lines (126 loc) · 5.08 KB
/
Employee.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace B1FormsApp1
{
public partial class Employee : Form
{
public Employee()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Data Source=DESKTOP-81COF93;Initial Catalog=BakeryB;Integrated Security=True");
con.Open();
try
{
SqlCommand command = new SqlCommand("insert into Employee values ('" + int.Parse(textBox1.Text) + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + textBox5.Text + "')", con);
command.ExecuteNonQuery();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
con.Close();
MessageBox.Show("Successfully inserted");
}
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
}
private void textBox3_TextChanged(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Data Source=DESKTOP-81COF93;Initial Catalog=BakeryB;Integrated Security=True");
con.Open();
//prepare Querey
string Employee_ID = textBox1.Text;
//string Query = "INSERT INTO Customer(FirstName, SecondName, Phone,Email,Area,City) Values ('" + FirstName + "','" + SecondName + "', '" + Phone + "','" + Email + "','" + Area + "','" + City + "')";
string Query = "DELETE FROM Employee WHERE Employee_ID='" + Employee_ID + "'";
//execute query
SqlCommand cmd = new SqlCommand(Query, con);
cmd.ExecuteNonQuery();
//close
con.Close();
MessageBox.Show("Data has been DELETED");
textBox1.Text = "";
textBox2.Text = "";
textBox3.Text = "";
textBox4.Text = "";
textBox5.Text = "";
}
private void button3_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("Data Source=DESKTOP-81COF93;Initial Catalog=BakeryB;Integrated Security=True");
con.Open();
//prepare Querey
string Employee_ID = textBox1.Text;
string First_Name = textBox2.Text;
string Last_Name = textBox3.Text;
string City = textBox4.Text;
string Salary = textBox5.Text;
string Query = "UPDATE Employee SET First_Name='" + First_Name + "' , Last_Name='" + Last_Name + "' , City='" + City + "' , Salary='" + Salary + "' WHERE Employee_ID='" + Employee_ID + "'";
//execute query
SqlCommand cmd = new SqlCommand(Query, con);
cmd.ExecuteNonQuery();
//close
con.Close();
MessageBox.Show("Data has been updated");
textBox1.Text = "";
textBox2.Text = "";
textBox3.Text = "";
textBox4.Text = "";
textBox5.Text = "";
}
private void button4_Click(object sender, EventArgs e)
{
/*SqlConnection con = new SqlConnection("Data Source=DESKTOP-81COF93;Initial Catalog=BakeryB;Integrated Security=True");
con.Open();
//prepare Querey
string Query = "select * from view_for_Admin";
//execute query
SqlCommand cmd = new SqlCommand(Query, con);
var reader = cmd.ExecuteReader();
DataTable table = new DataTable();
table.Load(reader);
dataGridView1.DataSource = table;
//close
con.Close();
*/
string connectionString = "Data Source=DESKTOP-81COF93;Initial Catalog=BakeryB;Integrated Security=True";
SqlConnection connection = new SqlConnection(connectionString);
connection.Open();
string Query = "select * from view_for_Admin";
//execute query
SqlCommand cmd = new SqlCommand(Query, connection);
var reader = cmd.ExecuteReader();
// while (reader.Read())
// {
// dataGridView1.Rows.Add(reader["Employee_ID"], reader["First_Name"], reader["Last_Name"], reader["City"]);
// }
DataTable table = new DataTable();
table.Load(reader);
dataGridView1.DataSource = table;
connection.Close();
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
}
}