Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is my code:

conn = sqlite3.connect(nnpcconfig.commondb)
cur = conn.cursor()
query = ['2124124', 'test2', 'test3', 'test4', 'test5']
cur.execute("insert into users(id, encpass, sname, name, fname) values (?, ?, ?, ?, ?)", query)
conn.commit
cur.execute("select * from users")
for row in cur:
    print row

This code works, returning row fed to it. But it comes out that once script terminated, table is clear again! Where's the mistake? Of course, table users exists.

share|improve this question

1 Answer

up vote 2 down vote accepted

You have another mistake: conn.commit instead of conn.commit()

share|improve this answer
yes, thanks, already fixed with the previous one. – Alexander Ilyin Aug 21 '10 at 0:19
1  
This is the actual problem in the above code that would cause the table to be empty. The connection will close when the script exits. – postfuturist Aug 21 '10 at 0:20
@cretive: consider changing your accepted answer ;-) – John Machin Aug 21 '10 at 0:29
Yes, updated accepted answer. – Alexander Ilyin Aug 21 '10 at 0:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.