Manasi Save wrote:
> I am working on an application. In my code nowhere I am explicitly
> setting AutoCommit = False after any statement.

You set AutoCommit = False by executing BEGIN statement. You set it back 
to True by executing COMMIT, END or ROLLBACK.

> But i am getting "SQLite error: cannot commit transaction - SQL
> statements in progress" this error.

You have to sqlite3_reset or sqlite3_finalize all outstanding statements 
before you can commit a transaction.

Igor Tandetnik 



_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to