Small. Fast. Reliable.
Choose any three.

SQLite C Interface

Enable Or Disable Extended Result Codes

int sqlite3_extended_result_codes(sqlite3*, int onoff);

The sqlite3_extended_result_codes() routine enables or disables the extended result codes feature of SQLite. The extended result codes are disabled by default for historical compatibility considerations.

Invariants:

H12201 Each new database connection shall have the extended result codes feature disabled by default.
H12202 The sqlite3_extended_result_codes(D,F) interface shall enable extended result codes for the database connection D if the F parameter is true, or disable them if F is false.

See also lists of Objects, Constants, and Functions.


This page last modified 2008/12/09 18:44:04 UTC