-
Notifications
You must be signed in to change notification settings - Fork 0
/
Database.py
202 lines (158 loc) · 5.17 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
from tkinter import *
import sqlite3
root = Tk()
root.title('Cloud9 Database')
conn = sqlite3.connect('address_book.db')
c = conn.cursor()
def update():
conn = sqlite3.connect('address_book.db')
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
})
conn.commit()
conn.close()
editor.destroy()
root.deiconify()
def edit():
root.withdraw()
global editor
editor = Tk()
editor.title('Update A Record')
conn = sqlite3.connect('address_book.db')
c = conn.cursor()
record_id = delete_box.get()
c.execute("SELECT * FROM addresses WHERE oid = " + record_id)
records = c.fetchall()
global f_name_editor
global l_name_editor
global address_editor
global city_editor
global state_editor
global zipcode_editor
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)
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)
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])
edit_btn = Button(editor, text="Save Record", command=update)
edit_btn.grid(row=6, column=0, columnspan=2, pady=10, padx=10, ipadx=145)
def delete():
conn = sqlite3.connect('address_book.db')
c = conn.cursor()
c.execute("DELETE from addresses WHERE oid = " + delete_box.get())
delete_box.delete(0, END)
conn.commit()
conn.close()
def submit():
conn = sqlite3.connect('address_book.db')
c = conn.cursor()
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()
})
conn.commit()
conn.close()
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)
def query():
conn = sqlite3.connect('address_book.db')
c = conn.cursor()
c.execute("SELECT *, oid FROM addresses")
records = c.fetchall()
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)
conn.commit()
conn.close()
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)
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)
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)
query_btn = Button(root, text="Show Records", command=query)
query_btn.grid(row=7, column=0, columnspan=2, pady=10, padx=10, ipadx=137)
delete_btn = Button(root, text="Delete Record", command=delete)
delete_btn.grid(row=10, column=0, columnspan=2, pady=10, padx=10, ipadx=136)
edit_btn = Button(root, text="Edit Record", command=edit)
edit_btn.grid(row=11, column=0, columnspan=2, pady=10, padx=10, ipadx=143)
conn.commit()
conn.close()
root.mainloop()