-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLManager.cs
More file actions
230 lines (193 loc) · 7.02 KB
/
Copy pathSQLManager.cs
File metadata and controls
230 lines (193 loc) · 7.02 KB
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
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace PDFiller
{
internal class SQLManager
{
private string connectionString = $@"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename={Environment.CurrentDirectory}\Database1.mdf;Integrated Security=True";
SqlConnection conn = new SqlConnection();
private static SQLManager instance;
private static readonly object lockObject = new object();
Regex idRegex = new Regex(@"^[0-9]{13}$");
//Regex nameRegex = new Regex(@"^[a-zA-Z0-9\s&]{1,100}$");
public static SQLManager GetInstance()
{
lock (lockObject)
{
if (instance == null)
{
instance = new SQLManager();
}
}
return instance;
}
private SQLManager()
{
conn.ConnectionString = connectionString;
try
{
conn.Open();
}
catch (Exception ex)
{
Console.WriteLine("Error connecting to database: " + ex.Message);
}
}
//public List<Product> SelectProductsByIdOrName(string str)
//{
// if(str == null)
// {
// throw new ArgumentNullException("Product search query string is null");
// }
// if (nameRegex.IsMatch(str))
// {
// SqlCommand cmd = new SqlCommand("select * from toppers where id like @name or name like @name;", conn);
// cmd.Parameters.AddWithValue("@name", "%" + str + "%");
// SqlDataReader reader = cmd.ExecuteReader();
// List<Product> products = new List<Product>();
// try
// {
// while (reader.Read())
// {
// string id = reader["id"].ToString();
// byte[] imgBytes = (byte[])reader["image"];
// string name = reader["name"].ToString();
// using (var ms = new System.IO.MemoryStream(imgBytes))
// {
// System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(ms);
// Product product = new Product(id, bmp, name);
// products.Add(product);
// }
// }
// }
// catch (Exception ex)
// {
// Console.WriteLine("Error reading data: " + ex.Message);
// }
// reader.Close();
// return products;
// }
// else
// {
// throw new ArgumentException("Invalid search query format");
// }
//}
/// <summary>
/// Retrieves a product by its unique identifier.
/// </summary>
/// <param name="id">The unique identifier of the product to retrieve.</param>
/// <returns>The <see cref="Product"/> associated with the specified identifier
/// or <see cref="null"/> if nothing was found</returns>
public Product GetProductById(string id)
{
Product product=null;
try
{
List<Product> products = GetProductsById(new string[] { id });
if(products.Count > 0)
{
product = products[0];
}
else
{
product = null;
}
}
catch(ArgumentException ex)
{
throw ex;
}
return product;
}
/// <summary>
/// Runs a select query on the database
/// and returns an array of Products that match every id in the ids array.
/// </summary>
/// <param name="ids">An array of all products ids</param>
/// <returns>An array of all products from the database</returns>
/// <exception cref="ArgumentException">Error reading from database</exception>
public List<Product> GetProductsById(string[] ids)
{
foreach (string id in ids)
{
if (!idRegex.IsMatch(id))
{
throw new ArgumentException("Invalid ID format");
}
}
SqlCommand cmd = conn.CreateCommand();
var parameters = new List<string>();
for (int i = 0; i < ids.Length; i++)
{
parameters.Add($"@id{i}");
cmd.Parameters.AddWithValue($"@id{i}", ids[i]);
}
cmd.CommandText = $"select * from toppers where id in ({string.Join(",", parameters)});";
cmd.Parameters.AddWithValue("ids", "("+string.Join(",",ids)+")");
SqlDataReader reader = cmd.ExecuteReader();
List<Product> products = new List<Product>();
try
{
while (reader.Read())
{
string id = reader["id"].ToString();
byte[] imgBytes = (byte[])reader["image"];
string name = reader["name"].ToString();
products.Add(new Product(id, imgBytes, name));
}
}catch (Exception ex)
{
Console.WriteLine("Error reading data: " + ex.Message);
}
reader.Close();
return products;
}
public List<Product> GetAllProducts()
{
SqlCommand cmd = new SqlCommand("select * from toppers;", conn);
SqlDataReader reader = cmd.ExecuteReader();
List<Product> products = new List<Product>();
try
{
while (reader.Read())
{
string id = reader["id"].ToString();
byte[] imgBytes = (byte[])reader["image"];
string name = reader["name"].ToString();
products.Add(new Product(id, imgBytes, name));
}
}
catch (Exception ex)
{
Console.WriteLine("Error reading data: " + ex.Message);
}
reader.Close();
return products;
}
/// <summary>
/// Closes the database connection if it is open.
/// </summary>
public void CloseConnection()
{
lock (lockObject)
{
if (conn != null && conn.State == System.Data.ConnectionState.Open)
{
try
{
conn.Close();
}
catch (Exception ex)
{
Console.WriteLine("Error closing connection: " + ex.Message);
}
}
}
}
}
}