-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPython-MySql DB.py
335 lines (227 loc) · 5.45 KB
/
Python-MySql DB.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
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#!/usr/bin/env python
# coding: utf-8
# ### Connect To Database Server
# In[1]:
import mysql.connector
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456"
)
if db.is_connected():
print("Database Connected")
# ### Create Database
# In[1]:
import mysql.connector
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456"
)
cursor = db.cursor()
cursor.execute("CREATE DATABASE employee_data")
print("Database Created Successful !!!")
# ### Create Table
# In[4]:
import mysql.connector
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456",
database="employee_data",
)
cursor = db.cursor()
sql = """CREATE TABLE customers (
customer_id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(255),
address Varchar(255)
)
"""
cursor.execute(sql)
print("Table Created Successful !!!")
# ### Insert One Data
# In[1]:
import mysql.connector
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456",
database="employee_data",
)
cursor = db.cursor()
sql = "INSERT INTO customers (name, address) VALUES (%s, %s)"
val = ("Mr Taif", "Dhaka")
cursor.execute(sql, val)
db.commit()
print("{} data added".format(cursor.rowcount))
# ### Insert Many Data
# In[3]:
import mysql.connector
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456",
database="employee_data",
)
cursor = db.cursor()
sql = "INSERT INTO customers (name, address) VALUES (%s, %s)"
values = [
("Shakib", "Magura"),
("Tamin", "Ctg"),
("Taskin", "Dhaka"),
("Mushfiq", "Rajshahi")
]
for val in values:
cursor.execute(sql, val)
db.commit()
print("{} data added".format(cursor.rowcount))
# ### Select
# In[6]:
import mysql.connector
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456",
database="employee_data",
)
cursor = db.cursor()
sql = "SELECT * FROM customers"
cursor.execute(sql)
result = cursor.fetchone()
print(result)
# ### Fetch All Data
# In[8]:
import mysql.connector
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456",
database="employee_data",
)
cursor = db.cursor()
sql = "SELECT * FROM customers"
cursor.execute(sql)
results = cursor.fetchall()
for data in results:
print(data)
# ### Delete Data
# In[13]:
import mysql.connector
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456",
database="employee_data",
)
cursor = db.cursor()
sql = "DELETE FROM customers WHERE customer_id=%s"
val = (4, )
cursor.execute(sql, val)
db.commit()
print("{} data deleted".format(cursor.rowcount))
# ### Update Data
# In[14]:
import mysql.connector
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456",
database="employee_data",
)
cursor = db.cursor()
sql = "UPDATE customers SET name=%s, address=%s WHERE customer_id=%s"
val = ("ShakibAL", "Dhaka", 2)
cursor.execute(sql, val)
db.commit()
print("{} data changed".format(cursor.rowcount))
# ### curds_app
# In[ ]:
import mysql.connector
import os
db = mysql.connector.connect(
host="127.0.0.1",
user="root",
password="123456",
database="employee_data",
)
def insert_data(db):
name = input("Enter Name: ")
address = input("Enter Address: ")
val = (name, address)
cursor = db.cursor()
sql = "INSERT INTO customers (name, address) VALUES (%s, %s)"
cursor.execute(sql, val)
db.commit()
print("{} data Inserted".format(cursor.rowcount))
def show_data(db):
cursor = db.cursor()
sql = "SELECT * FROM customers"
cursor.execute(sql)
results = cursor.fetchall()
if cursor.rowcount < 0:
print("There is not any data")
else:
for data in results:
print(data)
def update_data(db):
cursor = db.cursor()
show_data(db)
customer_id = input("Choose id customer> ")
name = input("New Name: ")
address = input("New Address: ")
sql = "UPDATE customers SET name=%s, address=%s WHERE customer_id=%s"
val = (name, address, customer_id)
cursor.execute(sql, val)
db.commit()
print("{} data successfully changed".format(cursor.rowcount))
def delete_data(db):
cursor = db.cursor()
show_data(db)
customer_id = input("Choose id customer> ")
sql = "DELETE FROM customers WHERE customer_id=%s"
val = (customer_id,)
cursor.execute(sql, val)
db.commit()
print("{} data successfully deleted".format(cursor.rowcount))
def search_data(db):
cursor = db.cursor()
keyword = input("Keyword: ")
sql = "SELECT * FROM customers WHERE name LIKE %s OR address LIKE %s"
val = ("%{}%".format(keyword), "%{}%".format(keyword))
cursor.execute(sql, val)
results = cursor.fetchall()
if cursor.rowcount < 0:
print("There is not any data")
else:
for data in results:
print(data)
def show_menu(db):
print("=== APPLICATION DATABASE PYTHON ===")
print("1. Insert Data")
print("2. Show Data")
print("3. Update Data")
print("4. Delete Data")
print("5. Search Data")
print("0. GO Out")
print("------------------")
menu = input("Choose menu> ")
#clear screen
os.system("clear")
if menu == "1":
insert_data(db)
elif menu == "2":
show_data(db)
elif menu == "3":
update_data(db)
elif menu == "4":
delete_data(db)
elif menu == "5":
search_data(db)
elif menu == "0":
exit()
else:
print("Menu WRONG!")
if __name__ == "__main__":
while(True):
show_menu(db)
# In[ ]: