mhm, the problem is i have to store the "Query strings" somewhere, so that i'm able to prepare them again ....
not nice, but OK.

thanks for your answer.

Dennis Cote wrote:
Your call to sqlite3_step() is returning an SQLITE_ERROR result. The SQLITE_SCHEMA error code will be returned by the sqlite3_finalize() call (or a call to sqlite3_errcode()) after the error is reported.

When you receive the SQLITE_SCHEMA error, you must finalize and then re-prepare your SQL statement before you can retry executing it. You can't simply re-execute it by calling sqlite3_step() again.

HTH
Dennis Cote

Reply via email to