-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCategory.cs
167 lines (131 loc) · 4.66 KB
/
Category.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
160
161
162
163
164
165
166
167
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace Library_management_system
{
public partial class Category : Form
{
public Category()
{
InitializeComponent();
load();
}
SqlConnection con = new SqlConnection("Data source=DESKTOP-N5IF2SJ\\SQLEXPRESS; Initial Catalog=slibrary; Integrated Security=true;");
SqlCommand cmd;
SqlDataReader dr;
string sql;
bool Mode = true;
string id;
public void load()
{
sql = "select * from category";
cmd = new SqlCommand(sql, con);
con.Open();
dr = cmd.ExecuteReader();
dataGridView1.Rows.Clear();
while(dr.Read())
{
dataGridView1.Rows.Add(dr[0], dr[1], dr[2]);
}
con.Close();
}
public void getid(string id)
{
sql = "select * from category where id= '" + id + "'";
cmd = new SqlCommand(sql, con);
con.Open();
dr = cmd.ExecuteReader();
while(dr.Read())
{
txtname.Text = dr[1].ToString();
txtstatus.Text = dr[2].ToString();
}
con.Close();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
string catname = txtname.Text;
//string status = txtstatus.SelectedItem.ToString();
string status = txtstatus.Text;
//id = dataGridView1.CurrentRow.Cells[0].Value.ToString();
if (Mode == true)
{
sql = "insert into category(catname,status) values(@catname, @status)";
con.Open();
cmd = new SqlCommand(sql, con);
cmd.Parameters.AddWithValue("@catname", catname);
cmd.Parameters.AddWithValue("@status", status);
cmd.ExecuteNonQuery();
MessageBox.Show("Category created");
txtname.Clear();
//txtstatus.Items.Clear();
txtstatus.SelectedIndex = -1;
txtname.Focus();
con.Close();
}
else
{
sql = "update category set catname=@catname, status=@status where id=@id";
con.Open();
cmd = new SqlCommand(sql, con);
cmd.Parameters.AddWithValue("@catname", catname);
cmd.Parameters.AddWithValue("@status", status);
cmd.Parameters.AddWithValue("@id", id);
cmd.ExecuteNonQuery();
MessageBox.Show("Category updated");
txtname.Clear();
//txtstatus.Items.Clear();
txtstatus.SelectedIndex = -1;
txtname.Focus();
con.Close();
}
}
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if(e.ColumnIndex==dataGridView1.Columns["edit"].Index && e.RowIndex>=0)
{
Mode = false;
id = dataGridView1.CurrentRow.Cells[0].Value.ToString();
getid(id);
}
else if (e.ColumnIndex == dataGridView1.Columns["delete"].Index && e.RowIndex >= 0)
{
Mode = false;
id = dataGridView1.CurrentRow.Cells[0].Value.ToString();
sql = "delete from category where id=@id";
con.Open();
cmd = new SqlCommand(sql, con);
cmd.Parameters.AddWithValue("@id", id);
cmd.ExecuteNonQuery();
MessageBox.Show("Category deleted");
txtname.Clear();
//txtstatus.Items.Clear();
txtstatus.SelectedIndex = -1;
txtname.Focus();
con.Close();
}
}
private void button3_Click(object sender, EventArgs e)
{
this.load();
}
private void button4_Click(object sender, EventArgs e)
{
this.Close();
}
}
}