SQLite3, data not found

J

jim-on-linux

Python help,

I just started working with SQLite3 and ran into
this problem.

Below, the first select produces results but,
after closing then re-opening the database the
select produces an empty list. Anyone know the
reason ??

The table seems to be empty.



import sqlite3
con = sqlite3.connect('myData')
cursor = con.cursor()

cursor.execute ("""create table data
(recordNo varchar,
caseNo varchar)""");

record = ['A', 'B']

cursor.execute("insert into data values (?,?)",
record ) ;

cursor.execute("select * from data ");
print cursor.fetchall();
con.close()

con = sqlite3.connect('myData')
cursor = con.cursor()
cursor.execute("select * from data");
print cursor.fetchall();


jim-on-linux
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,175
Latest member
Vinay Kumar_ Nevatia
Top