On Sat, Mar 31, 2012 at 12:07 PM, Lukas Gebauer <[email protected]> wrote:

> Hi all!
>
> Sqlite version 3.7.11 on Windows cause error in my program. Some of my
> pending statements are aborted by a nested savepoint transaction. See:
>
> SAVEPOINT x1;
> SELECT * FROM sometable; //just open statement and left it opened!
> SAVEPOINT x2;
> RELEASE x2;
> ... call sqlite3_step on previously opened statement - I got SQLITE_ABORT
> error, even I not see any Rollback.
>
> When I omit savepoint x1, then statement working well. If I omit nested
> x2 savepoint, statement working fine too.
>
> Is it bug or I missed something?
>

It is a bug.  It has now been fixed on the
trunk<http://www.sqlite.org/src/timeline?p=d2bf0efa7da59448>
.


>
> Thank you very much!
>
>
> --
> Lukas Gebauer.
>
> http://synapse.ararat.cz/ - Synapse Delphi and Kylix TCP/IP Library
> http://geoget.ararat.cz/ - Geocaching solution
>
>
> _______________________________________________
> sqlite-users mailing list
> [email protected]
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>



-- 
D. Richard Hipp
[email protected]
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to