-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatabases_in_Tkinter.py
186 lines (142 loc) · 3.91 KB
/
Databases_in_Tkinter.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
# 21th video
from tkinter import *
from PIL import Image,ImageTk
from tkinter import filedialog
import sqlite3
root= Tk()
root.title("")
root.geometry("400x400")
# Databases
# Create a Database or connect to one
conn = sqlite3.connect('address_book.db')
# Create a Cursor
c = conn.cursor()
#Create table
try:
c.execute("""CREATE TABLE addresses(
first_name text,
last_name text,
address text,
city text,
state text,
zipcode integer
)""")
except Exception as e:
pass
# Funtion to delete a record
def delete():
# Create a Database or connect to one
conn = sqlite3.connect('address_book.db')
# Create a Cursor
c = conn.cursor()
# Delete a record
c.execute("DELETE from addresses WHERE oid="+del_entry.get() )
c.execute("SELECT *, oid FROM addresses")
records = c.fetchall()
# c.fetchmany(50)
# c.fetchone()
# print(records)
print_records = ''
for record in records:
print_records += str(record[0])+ " " + str(record[1]) + "\t" + str(record[6]) + "\n"
query_label.configure(text = " ")
query_label.configure(text=print_records)
# Commit Changes
conn.commit()
#close connection
conn.close()
del_entry.delete(0,END)
#Create Submit Function
def submit():
# Create a Database or connect to one
conn = sqlite3.connect('address_book.db')
# Create a Cursor
c = conn.cursor()
# Insert into the table
c.execute("INSERT INTO addresses VALUES (:f_name,:l_name,:add,:city,:state,:zipcode)",
{
'f_name':f_name.get(),
'l_name':l_name.get(),
'add':add.get(),
'city':city.get(),
'state':state.get(),
'zipcode':zipcode.get()
})
# Commit Changes
conn.commit()
#close connection
conn.close()
# Clear the text boxes
f_name.delete(0,END)
l_name.delete(0,END)
add.delete(0,END)
city.delete(0,END)
state.delete(0,END)
zipcode.delete(0,END)
# Create a show records funtion
def query():
# Create a Database or connect to one
conn = sqlite3.connect('address_book.db')
# Create a Cursor
c = conn.cursor()
#fetch the data from database
c.execute("SELECT *, oid FROM addresses")
records = c.fetchall()
# c.fetchmany(50)
# c.fetchone()
# print(records)
print_records = ''
for record in records:
print_records += str(record[0])+ " " + str(record[1]) + "\t" + str(record[6]) + "\n"
query_label.configure(text = " ")
query_label.configure(text=print_records)
# Commit Changes
conn.commit()
#close connection
conn.close()
f_name = Entry(root,width=30)
f_name.grid(row=0,column=1,padx=2)
l_name = Entry(root,width=30)
l_name.grid(row=1,column=1)
add = Entry(root,width=30)
add.grid(row=2,column=1)
city = Entry(root,width=30)
city.grid(row=3,column=1)
state = Entry(root,width=30)
state.grid(row=4,column=1)
zipcode = Entry(root,width=30)
zipcode.grid(row=5,column=1)
query_label = Label(root)
query_label.grid(row=10,column=0,columnspan=2)
# Create Text box label
f_name_label = Label(root,text="First Name")
f_name_label.grid(row=0,column=0)
l_name_label = Label(root,text="Last Name")
l_name_label.grid(row=1,column=0)
add_label = Label(root,text="Address")
add_label.grid(row=2,column=0)
city_label = Label(root,text="City")
city_label.grid(row=3,column=0)
state_label = Label(root,text="State")
state_label.grid(row=4,column=0)
zipcode_label = Label(root,text="Zipcode")
zipcode_label.grid(row=5,column=0)
#Create Submit Button
btn_submit = Button(root,text="Add record to Database",command=submit)
btn_submit.grid(row=6,column=0,columnspan=2,pady=10,ipadx=100)
#create query button
btn_query = Button(root,text="Show Data",command=query)
btn_query.grid(row=7,column=0,columnspan=2,pady=10,ipadx=143)
# Delete Entry Box
del_entry = Entry(root,width=30)
del_entry.grid(row=8,column=1)
del_label=Label(root,text="Number to Delete")
del_label.grid(row=8,column=0)
# Delete Button
btn_del = Button(root,text="Delete The Record",command=delete)
btn_del.grid(row=9,column=0,columnspan=2,padx=2,ipadx=120)
# Commit Changes
conn.commit()
#close connection
conn.close()
root.mainloop()