-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbsqlproducts.cs
229 lines (197 loc) · 8.25 KB
/
dbsqlproducts.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
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Data.OleDb;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FinalProject
{
class DBSQLProducts : DBAccess
{
public DBSQLProducts(string connectionString)
: base(connectionString)
{
}
public void InsertProduct(Products product)
{
string Command = "INSERT INTO [Products] (Product_id,Product_Name,Product_Description,Product_Amount,Supplier_Product_Amount) VALUES (@Product_id,@Product_Name,@Product_Description,@Product_Amount,@Product_Amount) ";
using (OleDbCommand command = new OleDbCommand(Command))
{
command.Parameters.AddWithValue("@Product_id", product.ID);
command.Parameters.AddWithValue("@Product_Name", product.Name);
command.Parameters.AddWithValue("@Product_Description", product.Description);
command.Parameters.AddWithValue("@Product_Amount", product.Amount);
base.ExecuteSimpleQuery(command);
}
}
//Get the product id
public Products[] GetProductId()
{
DataSet data_set = new DataSet();
ArrayList ProductArr = new ArrayList();
string Command = "SELECT Product_id FROM Products";
using (OleDbCommand command = new OleDbCommand(Command))
{
data_set = GetMultipleQuery(command);
}
DataTable data_table = new DataTable();
try
{
data_table = data_set.Tables[0];
}
catch { }
foreach (DataRow tType in data_table.Rows)
{
Products product = new Products();
product.ID = int.Parse(tType[0].ToString());
ProductArr.Add(product);
}
return (Products[])ProductArr.ToArray(typeof(Products));
}
//Gets the product quantity
public Products[] GetProductAmount(string productName)
{
DataSet data_set = new DataSet();
ArrayList ProductArr = new ArrayList();
string Command = "SELECT Product_Amount FROM Products WHERE Product_Name=" + "'" + productName + "'";
using (OleDbCommand command = new OleDbCommand(Command))
{
data_set = GetMultipleQuery(command);
}
DataTable data_table = new DataTable();
try
{
data_table = data_set.Tables[0];
}
catch { }
foreach (DataRow tType in data_table.Rows)
{
Products product = new Products();
product.Amount = int.Parse(tType[0].ToString());
ProductArr.Add(product);
}
return (Products[])ProductArr.ToArray(typeof(Products));
}
//Gets the product price from supplier_product table
public double getProductprice(int ID)
{
double price = 0;
DataSet data_set = new DataSet();
string Command = "SELECT Price FROM Supplier_Product WHERE Product_id =" + ID;
using (OleDbCommand command = new OleDbCommand(Command))
{
data_set = GetMultipleQuery(command);
}
DataTable data_table = new DataTable();
try
{
data_table = data_set.Tables[0];
}
catch { }
foreach (DataRow tType in data_table.Rows)
{
price = double.Parse(tType[0].ToString());
}
return price;
}
//Gets products name
public Products[] GetProductName()
{
DataSet data_set = new DataSet();
ArrayList ProductArr = new ArrayList();
string Command = "SELECT Product_Name FROM Products";
using (OleDbCommand command = new OleDbCommand(Command))
{
data_set = GetMultipleQuery(command);
}
DataTable data_table = new DataTable();
try
{
data_table = data_set.Tables[0];
}
catch { }
foreach (DataRow tType in data_table.Rows)
{
Products product = new Products();
product.Name = tType[0].ToString();
ProductArr.Add(product);
}
return (Products[])ProductArr.ToArray(typeof(Products));
}
//Insert value to supplier_product table
public void InsertSupplierProduct(int ProductID, int SupplierID, double Price)
{
string Command = "INSERT INTO [Supplier_Product] (Supplier_id,Product_id,Price) VALUES (@Supplier_id,@Product_id,@Price)";
using (OleDbCommand command = new OleDbCommand(Command))
{
command.Parameters.AddWithValue("@Supplier_id", SupplierID);
command.Parameters.AddWithValue("@Product_id", ProductID);
command.Parameters.AddWithValue("@Price", Price);
base.ExecuteSimpleQuery(command);
}
}
//Update product information
public void UpdateProduct(Products product)
{
string Command = "UPDATE Products SET Product_id=@Product_id,Product_Name=@Product_Name,Product_Description=@Product_Description,Product_Amount=@Product_Amount WHERE Product_id=" + product.ID;
using (OleDbCommand command = new OleDbCommand(Command))
{
command.Parameters.AddWithValue("@Product_id", product.ID);
command.Parameters.AddWithValue("@Product_Name", product.Name);
command.Parameters.AddWithValue("@Product_Description", product.Description);
command.Parameters.AddWithValue("@Product_Amount", product.Amount);
base.ExecuteSimpleQuery(command);
}
}
//Update product and supplier information
public void updateProductSupplier(int SupplierID, int ProductID, int Price)
{
string Command = "UPDATE Supplier_Product SET Supplier_id=@Supplier_id,Product_id=@Product_id,Price=@Price";
using (OleDbCommand command = new OleDbCommand(Command))
{
command.Parameters.AddWithValue("@Supplier_id", SupplierID);
command.Parameters.AddWithValue("@Product_id", ProductID);
command.Parameters.AddWithValue("@Price", Price);
base.ExecuteSimpleQuery(command);
}
}
//Delete product
public void DeleteProduct(int ID)
{
string Command = "DELETE FROM Products WHERE Product_id=" + ID;
using (OleDbCommand command = new OleDbCommand(Command))
{
base.ExecuteSimpleQuery(command);
}
}
//Gets the information of the product
public Products[] GetProductData(Products ProductName)
{
string Command = "SELECT * FROM Products WHERE Product_Name=" + "'" + ProductName.Name + "'";
DataSet data_set = new DataSet();
ArrayList ProductArr = new ArrayList();
using (OleDbCommand command = new OleDbCommand(Command))
{
data_set = GetMultipleQuery(command);
}
DataTable data_table = new DataTable();
try
{
data_table = data_set.Tables[0];
}
catch { }
foreach (DataRow tType in data_table.Rows)
{
Products product = new Products();
product.ID = int.Parse(tType[0].ToString());
product.Name = (tType[1].ToString());
product.Description = (tType[2].ToString());
product.Amount = int.Parse(tType[3].ToString());
ProductArr.Add(product);
}
return (Products[])ProductArr.ToArray(typeof(Products));
}
}
}