On 25 Jul 2011, at 8:26am, Mattia wrote:

> I've tried doing transactions (committing and disposing them after each one)
> and yes, I've closed the database after doing my operations, with no luck at
> all.

You understand that you don't do this:

BEGIN TRANSACTION
insert 1
END TRANSACTION
BEGIN TRANSACTION
insert 2
END TRANSACTION
BEGIN TRANSACTION
insert 3
END TRANSACTION

but instead you do this:

BEGIN TRANSACTION
insert 1
insert 2
insert 3
END TRANSACTION

right ?

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

Reply via email to