Hello,
I have a couple questions about sqlite3_extended_result_codes():
1) Once I enable it, is it possible to determine whether extended
result codes is enabled for a given a sqlite3* handle?
2) Do I have to process each result code in order to obtain the
"regular" SQLite code, or can I compare it directly? For example:
// assume db is valid...
int resultCode = sqlite3_exec(db, ..., );
if (resultCode == SQLITE_OK) {
// do something...
}
3) Are the extended results returned *only* when SQLITE_IOERR is
detected? How does it work?
Thanks for the help,
-- Tito
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users