-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsqlClient.py
135 lines (119 loc) · 5.09 KB
/
sqlClient.py
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
import mysql.connector
class mySqlClient:
def __init__(self, username: str, password: str, host: str, database: str):
try:
self.sqlClient = mysql.connector.connect(
host=host,
user=username,
password=password
)
self.cursor = self.sqlClient.cursor()
self.createDatabase(database)
self.sqlClient.database = database
self.initializeTable()
except mysql.connector.Error as err:
print(f"Error during initialization: {err}")
raise
def createDatabase(self, database: str):
"""Creates the database if it doesn't exist."""
try:
self.cursor.execute(f"CREATE DATABASE IF NOT EXISTS {database}")
print(f"Database `{database}` ensured to exist.")
except mysql.connector.Error as err:
print(f"Error creating database: {err}")
raise
def initializeTable(self):
"""Creates the `employeedetails` table if it doesn't exist."""
try:
createTableQuery = """
CREATE TABLE IF NOT EXISTS employeedetails (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255),
dateOfBirth DATE,
joiningDate DATE,
salary FLOAT,
department VARCHAR(255)
)
"""
self.cursor.execute(createTableQuery)
self.sqlClient.commit()
print("Table `employeedetails` ensured to exist.")
except mysql.connector.Error as err:
print(f"Error creating table: {err}")
raise
def insertEmployee(self, name: str, dateOfBirth: str, joiningDate: str, department: str, salary: float):
"""Inserts a new employee record into the database."""
try:
insertQuery = "INSERT INTO employeedetails (name, dateOfBirth, joiningDate, salary, department) VALUES (%s, %s, %s, %s, %s)"
self.cursor.execute(insertQuery, (name, dateOfBirth, joiningDate, salary, department))
self.sqlClient.commit()
print("Employee inserted successfully.")
except mysql.connector.Error as err:
print(f"Error inserting employee: {err}")
raise
def findEmployee(self, method: str, value: str):
"""Finds employees based on the given method and value."""
try:
columnMap = {
'Id': 'id',
'Name': 'name',
'Birth Date': 'dateOfBirth',
'Joining Date': 'joiningDate',
'Salary': 'salary'
}
if method not in columnMap:
raise ValueError("Invalid search method.")
query = f"SELECT * FROM employeedetails WHERE LOWER({columnMap[method]}) LIKE LOWER(%s)"
self.cursor.execute(query, ('%' + value + '%',))
return self.cursor.fetchall()
except mysql.connector.Error as err:
print(f"Error finding employee: {err}")
raise
def deleteEmployee(self, method: str, value: str):
"""Deletes employees based on the given method and value."""
try:
columnMap = {
'Id': 'id',
'Name': 'name',
'Birth Date': 'dateOfBirth',
'Joining Date': 'joiningDate',
'Salary': 'salary'
}
if method not in columnMap:
raise ValueError("Invalid delete method.")
query = f"DELETE FROM employeedetails WHERE {columnMap[method]} = %s"
self.cursor.execute(query, (value,))
self.sqlClient.commit()
print("Employee deleted successfully.")
except mysql.connector.Error as err:
print(f"Error deleting employee: {err}")
raise
def updateEmployee(self, updateField: str, method: str, value: str, newValue: str):
"""Updates a specific field of an employee record."""
try:
columnMap = {
'Id': 'id',
'Name': 'name',
'Birth Date': 'dateOfBirth',
'Joining Date': 'joiningDate',
'Salary': 'salary',
'Department': 'department'
}
if updateField not in columnMap or method not in columnMap:
raise ValueError("Invalid updateField or method.")
updateQuery = f"UPDATE employeedetails SET {columnMap[updateField]} = %s WHERE {columnMap[method]} = %s"
self.cursor.execute(updateQuery, (newValue, value))
self.sqlClient.commit()
print("Employee updated successfully.")
except mysql.connector.Error as err:
print(f"Error updating employee: {err}")
raise
def getAllEmployees(self):
"""Fetches all employee records from the database."""
try:
query = "SELECT * FROM employeedetails"
self.cursor.execute(query)
return self.cursor.fetchall()
except mysql.connector.Error as err:
print(f"Error fetching employees: {err}")
raise