-
Notifications
You must be signed in to change notification settings - Fork 0
/
StudentRepository.cs
189 lines (171 loc) · 6.96 KB
/
StudentRepository.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
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.Extensions.Configuration;
using Npgsql;
namespace sqltest
{
public class StudentRepository
{
private string connectionString = "Host=localhost;Username=postgres;Password=password;Database=postgres";
public async Task AddStudentAsync(Student student)
{
try
{
await using var dataSource = NpgsqlDataSource.Create(connectionString);
await using var cmd = dataSource.CreateCommand(@"
INSERT INTO students (first_name, last_name, email, registration_date)
VALUES (@FirstName, @LastName, @Email, @RegistrationDate)");
cmd.Parameters.AddWithValue("FirstName", student.FirstName);
cmd.Parameters.AddWithValue("LastName", student.LastName);
cmd.Parameters.AddWithValue("Email", student.Email);
cmd.Parameters.AddWithValue("RegistrationDate", student.RegistrationDate);
await cmd.ExecuteNonQueryAsync();
Console.WriteLine("Student added successfully.");
}
catch (NpgsqlException ex)
{
Console.WriteLine($"Database error: {ex.Message}");
}
catch (Exception ex)
{
Console.WriteLine($"An error occurred: {ex.Message}");
}
}
public async Task<List<Student>> GetAllStudentsAsync()
{
var students = new List<Student>();
try
{
await using var dataSource = NpgsqlDataSource.Create(connectionString);
await using var cmd = dataSource.CreateCommand("SELECT * FROM students");
await using var reader = await cmd.ExecuteReaderAsync();
while (await reader.ReadAsync())
{
students.Add(new Student
{
Id = reader.GetInt32(0),
FirstName = reader.GetString(1),
LastName = reader.GetString(2),
Email = reader.GetString(3),
RegistrationDate = reader.GetDateTime(4)
});
}
}
catch (NpgsqlException ex)
{
Console.WriteLine($"Database error: {ex.Message}");
}
catch (Exception ex)
{
Console.WriteLine($"An error occurred: {ex.Message}");
}
return students;
}
public async Task<Student?> GetStudentByIdAsync(int id)
{
try
{
await using var dataSource = NpgsqlDataSource.Create(connectionString);
await using var cmd = dataSource.CreateCommand("SELECT * FROM students WHERE id = @Id");
cmd.Parameters.AddWithValue("Id", id);
await using var reader = await cmd.ExecuteReaderAsync();
if (await reader.ReadAsync())
{
return new Student
{
Id = reader.GetInt32(0),
FirstName = reader.GetString(1),
LastName = reader.GetString(2),
Email = reader.GetString(3),
RegistrationDate = reader.GetDateTime(4)
};
}
}
catch (NpgsqlException ex)
{
Console.WriteLine($"Database error: {ex.Message}");
}
catch (Exception ex)
{
Console.WriteLine($"An error occurred: {ex.Message}");
}
return null;
}
public async Task<List<Student>> SearchStudentsByNameAsync(string name)
{
var students = new List<Student>();
try
{
await using var dataSource = NpgsqlDataSource.Create(connectionString);
await using var cmd = dataSource.CreateCommand("SELECT * FROM students WHERE first_name ILIKE @Name OR last_name ILIKE @Name");
cmd.Parameters.AddWithValue("Name", $"%{name}%");
await using var reader = await cmd.ExecuteReaderAsync();
while (await reader.ReadAsync())
{
students.Add(new Student
{
Id = reader.GetInt32(0),
FirstName = reader.GetString(1),
LastName = reader.GetString(2),
Email = reader.GetString(3),
RegistrationDate = reader.GetDateTime(4)
});
}
}
catch (NpgsqlException ex)
{
Console.WriteLine($"Database error: {ex.Message}");
}
catch (Exception ex)
{
Console.WriteLine($"An error occurred: {ex.Message}");
}
return students;
}
public async Task UpdateStudentAsync(Student student)
{
try
{
await using var dataSource = NpgsqlDataSource.Create(connectionString);
await using var cmd = dataSource.CreateCommand(@"
UPDATE students SET first_name = @FirstName, last_name = @LastName, email = @Email, registration_date = @RegistrationDate
WHERE id = @Id");
cmd.Parameters.AddWithValue("Id", student.Id);
cmd.Parameters.AddWithValue("FirstName", student.FirstName);
cmd.Parameters.AddWithValue("LastName", student.LastName);
cmd.Parameters.AddWithValue("Email", student.Email);
cmd.Parameters.AddWithValue("RegistrationDate", student.RegistrationDate);
await cmd.ExecuteNonQueryAsync();
Console.WriteLine("Student updated successfully.");
}
catch (NpgsqlException ex)
{
Console.WriteLine($"Database error: {ex.Message}");
}
catch (Exception ex)
{
Console.WriteLine($"An error occurred: {ex.Message}");
}
}
public async Task DeleteStudentAsync(int id)
{
try
{
await using var dataSource = NpgsqlDataSource.Create(connectionString);
await using var cmd = dataSource.CreateCommand("DELETE FROM students WHERE id = @Id");
cmd.Parameters.AddWithValue("Id", id);
await cmd.ExecuteNonQueryAsync();
Console.WriteLine("Student deleted successfully.");
}
catch (NpgsqlException ex)
{
Console.WriteLine($"Database error: {ex.Message}");
}
catch (Exception ex)
{
Console.WriteLine($"An error occurred: {ex.Message}");
}
}
}
}