How to get a whole sqlite3 query onto a tkinter page
up vote
1
down vote
favorite
I am making a program where you can search a name, and everything from the sqlite3 database will show up.
def search():
tk = Tk()
tk.geometry('500x500')
labe = Label(tk, text="Search all: fullname, major, gender, class one, class two, class three")
labe.pack()
ent = Entry(tk, bd=5)
ent.pack()
def dog():
getted = ent.get()
conn = sqlite3.connect('friend.db')
if getted == "fullname":
with conn:
cursor = conn.cursor()
cursor.execute('SELECT name1 FROM Photos')
conn.commit()
result = cursor.fetchall()
for r in result:
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=r)
lab.pack()
tkee.mainloop()
buty = Button(tk, text="Submit", command=dog)
buty.pack()
The program works fine when I enter that I want all the full names, but only one name comes up on the slide. It is only until I exit all the other tabs that the other names show up. If anyone knows how to do this, that would be greatly appreciated. Thanks, Jamal
python tkinter sqlite3
add a comment |
up vote
1
down vote
favorite
I am making a program where you can search a name, and everything from the sqlite3 database will show up.
def search():
tk = Tk()
tk.geometry('500x500')
labe = Label(tk, text="Search all: fullname, major, gender, class one, class two, class three")
labe.pack()
ent = Entry(tk, bd=5)
ent.pack()
def dog():
getted = ent.get()
conn = sqlite3.connect('friend.db')
if getted == "fullname":
with conn:
cursor = conn.cursor()
cursor.execute('SELECT name1 FROM Photos')
conn.commit()
result = cursor.fetchall()
for r in result:
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=r)
lab.pack()
tkee.mainloop()
buty = Button(tk, text="Submit", command=dog)
buty.pack()
The program works fine when I enter that I want all the full names, but only one name comes up on the slide. It is only until I exit all the other tabs that the other names show up. If anyone knows how to do this, that would be greatly appreciated. Thanks, Jamal
python tkinter sqlite3
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am making a program where you can search a name, and everything from the sqlite3 database will show up.
def search():
tk = Tk()
tk.geometry('500x500')
labe = Label(tk, text="Search all: fullname, major, gender, class one, class two, class three")
labe.pack()
ent = Entry(tk, bd=5)
ent.pack()
def dog():
getted = ent.get()
conn = sqlite3.connect('friend.db')
if getted == "fullname":
with conn:
cursor = conn.cursor()
cursor.execute('SELECT name1 FROM Photos')
conn.commit()
result = cursor.fetchall()
for r in result:
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=r)
lab.pack()
tkee.mainloop()
buty = Button(tk, text="Submit", command=dog)
buty.pack()
The program works fine when I enter that I want all the full names, but only one name comes up on the slide. It is only until I exit all the other tabs that the other names show up. If anyone knows how to do this, that would be greatly appreciated. Thanks, Jamal
python tkinter sqlite3
I am making a program where you can search a name, and everything from the sqlite3 database will show up.
def search():
tk = Tk()
tk.geometry('500x500')
labe = Label(tk, text="Search all: fullname, major, gender, class one, class two, class three")
labe.pack()
ent = Entry(tk, bd=5)
ent.pack()
def dog():
getted = ent.get()
conn = sqlite3.connect('friend.db')
if getted == "fullname":
with conn:
cursor = conn.cursor()
cursor.execute('SELECT name1 FROM Photos')
conn.commit()
result = cursor.fetchall()
for r in result:
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=r)
lab.pack()
tkee.mainloop()
buty = Button(tk, text="Submit", command=dog)
buty.pack()
The program works fine when I enter that I want all the full names, but only one name comes up on the slide. It is only until I exit all the other tabs that the other names show up. If anyone knows how to do this, that would be greatly appreciated. Thanks, Jamal
python tkinter sqlite3
python tkinter sqlite3
asked Nov 20 at 0:53
JamalTheCoolKid
417
417
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
The problem that is occurring is that you are using a for loop.
result = cursor.fetchall()
for r in result:
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=r)
lab.pack()
tkee.mainloop()
If you change it just to.
result = cursor.fetchall()
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=result)
lab.pack()
tkee.mainloop()
Then it will work
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
The problem that is occurring is that you are using a for loop.
result = cursor.fetchall()
for r in result:
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=r)
lab.pack()
tkee.mainloop()
If you change it just to.
result = cursor.fetchall()
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=result)
lab.pack()
tkee.mainloop()
Then it will work
add a comment |
up vote
0
down vote
The problem that is occurring is that you are using a for loop.
result = cursor.fetchall()
for r in result:
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=r)
lab.pack()
tkee.mainloop()
If you change it just to.
result = cursor.fetchall()
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=result)
lab.pack()
tkee.mainloop()
Then it will work
add a comment |
up vote
0
down vote
up vote
0
down vote
The problem that is occurring is that you are using a for loop.
result = cursor.fetchall()
for r in result:
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=r)
lab.pack()
tkee.mainloop()
If you change it just to.
result = cursor.fetchall()
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=result)
lab.pack()
tkee.mainloop()
Then it will work
The problem that is occurring is that you are using a for loop.
result = cursor.fetchall()
for r in result:
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=r)
lab.pack()
tkee.mainloop()
If you change it just to.
result = cursor.fetchall()
tkee = Tk()
tkee.geometry('500x500')
lab = Label(tkee, text=result)
lab.pack()
tkee.mainloop()
Then it will work
answered Nov 20 at 1:19
JamalTheCoolKid
417
417
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384720%2fhow-to-get-a-whole-sqlite3-query-onto-a-tkinter-page%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown