Nathan Biggs <[email protected]> wrote: > Do you ever need to call finalize if prepare is not successful. > Prepare does not seem to return anything if not successful > (SQLITE_OK).
If prepare fails, you don't get a valid sqlite3_stmt* so you don't have anything to call finalize on. Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

