-
Notifications
You must be signed in to change notification settings - Fork 0
/
baglanti.cs
274 lines (267 loc) · 10.1 KB
/
baglanti.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;
using System.Data.SqlClient;
using System.Windows.Forms;
namespace KütüphaneTakipProgramı
{
class baglanti
{
string connectionString = "Server=.;Database=KUTUPHANE;Trusted_Connection=True;";
SqlCommand komut;
SqlConnection con;
public void kullaniciEkle(string kadi, string parola, string isim, string soyisim, byte[] kullaniciFoto)
{
komut = new SqlCommand();
komut.CommandType = CommandType.StoredProcedure;
komut.CommandText = "spKullaniciEkle";
komut.Parameters.AddWithValue("@kadi", SqlDbType.NVarChar).Value = kadi;
komut.Parameters.AddWithValue("@parola", SqlDbType.NVarChar).Value = parola;
komut.Parameters.AddWithValue("@isim", SqlDbType.NVarChar).Value = isim;
komut.Parameters.AddWithValue("@soyisim", SqlDbType.NVarChar).Value = soyisim;
komut.Parameters.AddWithValue("@kullaniciFoto", SqlDbType.Image).Value = kullaniciFoto;
using (con = new SqlConnection(connectionString))
{
komut.Connection = con;
con.Open();
try
{
komut.ExecuteNonQuery();
MessageBox.Show("Kullanıcı Eklendi");
}
catch (Exception)
{
MessageBox.Show("Kullanıcı Eklenemedi");
}
con.Close();
}
}
public void adminEkle(string kadi, string parola, string isim, string soyisim, byte[] foto)
{
komut = new SqlCommand();
komut.CommandType = CommandType.StoredProcedure;
komut.CommandText = "spAdminEkle";
komut.Parameters.AddWithValue("@kadi", SqlDbType.NVarChar).Value = kadi;
komut.Parameters.AddWithValue("@parola", SqlDbType.NVarChar).Value = parola;
komut.Parameters.AddWithValue("@isim", SqlDbType.NVarChar).Value = isim;
komut.Parameters.AddWithValue("@soyisim", SqlDbType.NVarChar).Value = soyisim;
komut.Parameters.AddWithValue("@foto", SqlDbType.Image).Value = foto;
using (con = new SqlConnection(connectionString))
{
komut.Connection = con;
con.Open();
try
{
komut.ExecuteNonQuery();
MessageBox.Show("Admin Eklendi");
}
catch (Exception)
{
MessageBox.Show("Admin Eklenemedi");
}
con.Close();
}
}
public bool kullaniciGirisKontrol(string kadi, string parola)
{
komut = new SqlCommand();
komut.CommandType = CommandType.StoredProcedure;
komut.CommandText = "spKullaniciGiris";
komut.Parameters.AddWithValue("@kadi", SqlDbType.NVarChar).Value = kadi;
komut.Parameters.AddWithValue("@parola", SqlDbType.NVarChar).Value = parola;
using (con = new SqlConnection(connectionString))
{
komut.Connection = con;
con.Open();
try
{
var a = komut.ExecuteScalar();
if (a != null)
{
return true;
}
else
{
return false;
}
}
catch (Exception)
{
MessageBox.Show("Hatalı Giriş");
return false;
}
}
}
public bool adminGirisKontrol(string kadi, string parola)
{
komut = new SqlCommand();
komut.CommandType = CommandType.StoredProcedure;
komut.CommandText = "spAdminGiris";
komut.Parameters.AddWithValue("@kadi", SqlDbType.NVarChar).Value = kadi;
komut.Parameters.AddWithValue("@parola", SqlDbType.NVarChar).Value = parola;
using (con = new SqlConnection(connectionString))
{
komut.Connection = con;
con.Open();
try
{
var a = komut.ExecuteScalar();
if (a != null)
{
return true;
}
else
{
return false;
}
}
catch (Exception)
{
MessageBox.Show("Hatalı Giriş");
return false;
}
}
}
public void kitapEkle(string ISBN, string Adi, string Yazar, string SayfaSayisi, string Turu)
{
komut = new SqlCommand();
komut.CommandType = CommandType.StoredProcedure;
komut.CommandText = "spKitapEkle";
komut.Parameters.AddWithValue("@ISBN", SqlDbType.NVarChar).Value = ISBN;
komut.Parameters.AddWithValue("@Adi", SqlDbType.NVarChar).Value = Adi;
komut.Parameters.AddWithValue("@Yazar", SqlDbType.NVarChar).Value = Yazar;
komut.Parameters.AddWithValue("@SayfaSayisi", SqlDbType.NVarChar).Value = SayfaSayisi;
komut.Parameters.AddWithValue("@Turu", SqlDbType.NVarChar).Value = Turu;
using (con = new SqlConnection(connectionString))
{
komut.Connection = con;
con.Open();
try
{
komut.ExecuteNonQuery();
MessageBox.Show("Kitap Eklendi");
}
catch (Exception)
{
MessageBox.Show("Kitap Eklenemedi");
}
con.Close();
}
}
public void kitapCikar(string ISBN)
{
komut = new SqlCommand();
komut.CommandType = CommandType.StoredProcedure;
komut.CommandText = "spKitapCikar";
komut.Parameters.AddWithValue("@ISBN", SqlDbType.NVarChar).Value = ISBN;
using (con = new SqlConnection(connectionString))
{
komut.Connection = con;
con.Open();
try
{
komut.ExecuteNonQuery();
MessageBox.Show("Kayıt Silindi");
}
catch (Exception)
{
MessageBox.Show("Kayıt Silinemedi");
}
con.Close();
}
}
public void kitapListe(DataGridView dg)
{
using (con = new SqlConnection(connectionString))
{
con.Open();
SqlDataAdapter adp = new SqlDataAdapter("spKitapListe", con);
DataTable dt = new DataTable();
try
{
adp.Fill(dt);
dg.DataSource = dt;
}
catch (Exception hata)
{
MessageBox.Show(hata.ToString());
}
con.Close();
}
}
public void kontrolGoster(DataGridView gv)
{
using (con = new SqlConnection(connectionString))
{
con.Open();
SqlDataAdapter adp = new SqlDataAdapter("select * from vwTeslimEtmeyenGetir", con);
DataTable dt = new DataTable();
try
{
adp.Fill(dt);
gv.DataSource = dt;
}
catch (Exception e)
{
MessageBox.Show(e.ToString());
}
con.Close();
}
}
public void emanetVerme(string ISBN, int KullaniciID, DateTime Verildi)
{
Verildi = DateTime.Now;
komut = new SqlCommand();
komut.CommandType = CommandType.StoredProcedure;
komut.CommandText = "spEmanetVerme";
komut.Parameters.AddWithValue("@ISBN", SqlDbType.NVarChar).Value = ISBN;
komut.Parameters.AddWithValue("@KullaniciID", SqlDbType.Int).Value = KullaniciID;
komut.Parameters.AddWithValue("@Verildi", SqlDbType.DateTime).Value = Verildi;
using (con = new SqlConnection(connectionString))
{
komut.Connection = con;
con.Open();
try
{
komut.ExecuteNonQuery();
MessageBox.Show("Emanet Verildi");
}
catch (Exception e)
{
MessageBox.Show(e.ToString());
}
con.Close();
}
}
public void teslimAlma(int id, DateTime Alindi)
{
komut = new SqlCommand();
komut.CommandType = CommandType.StoredProcedure;
komut.CommandText = "spTeslimAlma";
komut.Parameters.AddWithValue("@id", SqlDbType.Int).Value = id;
komut.Parameters.AddWithValue("@Alindi", SqlDbType.DateTime).Value = Alindi;
using (con = new SqlConnection(connectionString))
{
komut.Connection = con;
con.Open();
try
{
komut.ExecuteNonQuery();
MessageBox.Show("Teslim Alındı");
}
catch (Exception)
{
MessageBox.Show("Teslim Alınamadı");
}
con.Close();
}
}
internal void adminEkle()
{
throw new NotImplementedException();
}
}
}