-
Notifications
You must be signed in to change notification settings - Fork 345
/
database.py
275 lines (220 loc) · 6.65 KB
/
database.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
from tkinter import *
from PIL import ImageTk,Image
import sqlite3
root = Tk()
root.title('Codemy.com - Learn To Code!')
root.iconbitmap('c:/gui/codemy.ico')
root.geometry("400x600")
# Databases
# Create a database or connect to one
conn = sqlite3.connect('address_book.db')
# Create cursor
c = conn.cursor()
# Create table
'''
c.execute("""CREATE TABLE addresses (
first_name text,
last_name text,
address text,
city text,
state text,
zipcode integer
)""")
'''
# Create Update function to update a record
def update():
# Create a database or connect to one
conn = sqlite3.connect('address_book.db')
# Create cursor
c = conn.cursor()
record_id = delete_box.get()
c.execute("""UPDATE addresses SET
first_name = :first,
last_name = :last,
address = :address,
city = :city,
state = :state,
zipcode = :zipcode
WHERE oid = :oid""",
{
'first': f_name_editor.get(),
'last': l_name_editor.get(),
'address': address_editor.get(),
'city': city_editor.get(),
'state': state_editor.get(),
'zipcode': zipcode_editor.get(),
'oid': record_id
})
#Commit Changes
conn.commit()
# Close Connection
conn.close()
editor.destroy()
root.deiconify()
# Create Edit function to update a record
def edit():
root.withdraw()
global editor
editor = Tk()
editor.title('Update A Record')
editor.iconbitmap('c:/gui/codemy.ico')
editor.geometry("400x300")
# Create a database or connect to one
conn = sqlite3.connect('address_book.db')
# Create cursor
c = conn.cursor()
record_id = delete_box.get()
# Query the database
c.execute("SELECT * FROM addresses WHERE oid = " + record_id)
records = c.fetchall()
#Create Global Variables for text box names
global f_name_editor
global l_name_editor
global address_editor
global city_editor
global state_editor
global zipcode_editor
# Create Text Boxes
f_name_editor = Entry(editor, width=30)
f_name_editor.grid(row=0, column=1, padx=20, pady=(10, 0))
l_name_editor = Entry(editor, width=30)
l_name_editor.grid(row=1, column=1)
address_editor = Entry(editor, width=30)
address_editor.grid(row=2, column=1)
city_editor = Entry(editor, width=30)
city_editor.grid(row=3, column=1)
state_editor = Entry(editor, width=30)
state_editor.grid(row=4, column=1)
zipcode_editor = Entry(editor, width=30)
zipcode_editor.grid(row=5, column=1)
# Create Text Box Labels
f_name_label = Label(editor, text="First Name")
f_name_label.grid(row=0, column=0, pady=(10, 0))
l_name_label = Label(editor, text="Last Name")
l_name_label.grid(row=1, column=0)
address_label = Label(editor, text="Address")
address_label.grid(row=2, column=0)
city_label = Label(editor, text="City")
city_label.grid(row=3, column=0)
state_label = Label(editor, text="State")
state_label.grid(row=4, column=0)
zipcode_label = Label(editor, text="Zipcode")
zipcode_label.grid(row=5, column=0)
# Loop thru results
for record in records:
f_name_editor.insert(0, record[0])
l_name_editor.insert(0, record[1])
address_editor.insert(0, record[2])
city_editor.insert(0, record[3])
state_editor.insert(0, record[4])
zipcode_editor.insert(0, record[5])
# Create a Save Button To Save edited record
edit_btn = Button(editor, text="Save Record", command=update)
edit_btn.grid(row=6, column=0, columnspan=2, pady=10, padx=10, ipadx=145)
# Create Function to Delete A Record
def delete():
# Create a database or connect to one
conn = sqlite3.connect('address_book.db')
# Create cursor
c = conn.cursor()
# Delete a record
c.execute("DELETE from addresses WHERE oid = " + delete_box.get())
delete_box.delete(0, END)
#Commit Changes
conn.commit()
# Close Connection
conn.close()
# Create Submit Function For database
def submit():
# Create a database or connect to one
conn = sqlite3.connect('address_book.db')
# Create cursor
c = conn.cursor()
# Insert Into Table
c.execute("INSERT INTO addresses VALUES (:f_name, :l_name, :address, :city, :state, :zipcode)",
{
'f_name': f_name.get(),
'l_name': l_name.get(),
'address': address.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)
address.delete(0, END)
city.delete(0, END)
state.delete(0, END)
zipcode.delete(0, END)
# Create Query Function
def query():
# Create a database or connect to one
conn = sqlite3.connect('address_book.db')
# Create cursor
c = conn.cursor()
# Query the database
c.execute("SELECT *, oid FROM addresses")
records = c.fetchall()
# print(records)
# Loop Thru Results
print_records = ''
for record in records:
print_records += str(record[0]) + " " + str(record[1]) + " " + "\t" +str(record[6]) + "\n"
query_label = Label(root, text=print_records)
query_label.grid(row=12, column=0, columnspan=2)
#Commit Changes
conn.commit()
# Close Connection
conn.close()
# Create Text Boxes
f_name = Entry(root, width=30)
f_name.grid(row=0, column=1, padx=20, pady=(10, 0))
l_name = Entry(root, width=30)
l_name.grid(row=1, column=1)
address = Entry(root, width=30)
address.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)
delete_box = Entry(root, width=30)
delete_box.grid(row=9, column=1, pady=5)
# Create Text Box Labels
f_name_label = Label(root, text="First Name")
f_name_label.grid(row=0, column=0, pady=(10, 0))
l_name_label = Label(root, text="Last Name")
l_name_label.grid(row=1, column=0)
address_label = Label(root, text="Address")
address_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)
delete_box_label = Label(root, text="Select ID")
delete_box_label.grid(row=9, column=0, pady=5)
# Create Submit Button
submit_btn = Button(root, text="Add Record To Database", command=submit)
submit_btn.grid(row=6, column=0, columnspan=2, pady=10, padx=10, ipadx=100)
# Create a Query Button
query_btn = Button(root, text="Show Records", command=query)
query_btn.grid(row=7, column=0, columnspan=2, pady=10, padx=10, ipadx=137)
#Create A Delete Button
delete_btn = Button(root, text="Delete Record", command=delete)
delete_btn.grid(row=10, column=0, columnspan=2, pady=10, padx=10, ipadx=136)
# Create an Update Button
edit_btn = Button(root, text="Edit Record", command=edit)
edit_btn.grid(row=11, column=0, columnspan=2, pady=10, padx=10, ipadx=143)
#Commit Changes
conn.commit()
# Close Connection
conn.close()
root.mainloop()