On 11 Feb 2015, at 11:19pm, pablo Van <pdvm2...@gmail.com> wrote:

> I have a problem with my delphi's application when I want run it on other
> PC. I use ZeosLib in my application
> The message is : Library routine  called out of sequence

What's happening is that SQLite relies on some calls being executed in a 
sequence, for instance

_prepare()
_step()
_step()
_step()
...
_finalize()

and the application is trying to do something like


_prepare()
_step()
_finalize()
_step()
_step()
...

If you wrote the Delphi application you might be able to fix it.  If you didn't 
write it, and it works fine on one PC and not on the other /when they have the 
same data/, then you're going to have to contact the programmer to get it fixed.

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

Reply via email to