-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb_connection.py
More file actions
120 lines (85 loc) · 2.79 KB
/
db_connection.py
File metadata and controls
120 lines (85 loc) · 2.79 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
import mysql.connector
try:
conn = mysql.connector.connect(
host="localhost",
user="root",
password="#ER@N@1999",
database = "school"
)
if conn.is_connected():
print("Connected")
except mysql.connector.Error as e:
print ("error",e)
cursor = conn.cursor()
create_table_query = """
CREATE TABLE IF NOT EXISTS Employee (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255),
position VARCHAR(255),
salary DECIMAL(10,2)
)"""
cursor .execute(create_table_query)
print("Table,'Employees' has been created Successfully")
except mysql.connector.Error as err:
print("Error: {err}")
finally:
cursor.close()
conn.close()
############# insert ################
# try:
# conn = mysql.connector.connect(
# host="localhost",
# user="root",
# password="#ER@N@1999",
# database = "school"
# )
# cursor= conn.cursor()
# insert_query = """
# INSERT INTO Employee (name, position, salary) VALUES (%s, %s, %s)
# """
# employee_data = [
# ("John Doe", "Software Engineer", 70000),
# ("Jane Smith", "Product Manager", 80000),
# ("Mike Johnson", "Data Scientist", 90000)
# ]
# cursor.executemany(insert_query, employee_data)
# conn.commit()
# print(cursor.rowcount, "records inserted successfully into the Employee table")
################Fetch DATA #################
# try:
# conn = mysql.connector.connect(
# host="localhost",
# user="root",
# password="#ER@N@1999",
# database = "school"
# )
# cursor = conn.cursor()
# fetch_query = " SELECT * FROM Employee "
# cursor.execute(fetch_query)
# result = cursor.fetchall()
# print("Employees")
# for row in result:
# print(row)
# except mysql.connector.Error as err:
# print(f"Error: {err}")
# finally:
# cursor.close()
# conn.close()
##################### update database #################
# try:
# conn =mysql.connector.connect(
# host="localhost",
# user="root",
# password="#ER@N@1999",
# database = "school"
# )
# cursor = conn.cursor()
# update_query = "UPDATE Employee SET salary = %s WHERE name = %s"
# cursor.execute(update_query,(65000.00,'john doe'))
# conn.commit()
# print(f"{cursor.rowcount} row(s) updated successfully")
# except mysql.conn.errors as err:
# print(f"Error: {err}")
# finally:
# cursor.close()
# conn.close()