| Previous | Next |
| SQLITE_E_CANTOPEN_CONVPATH | SQLITE_E_IOERR_DIR_FSYNC |
SQLITE_E_CONSTRAINT_FUNCTION
SQLITE_E_CONSTRAINT_FUNCTION is reserved for extension functions. Current SQLite core documentation states that the core itself does not normally emit this code.
What to check
- Record the SQLite version and the list of loaded extensions or application-defined SQL functions.
- Inspect the function implementation and its error mapping; the code can carry an extension-specific policy decision.
- Reproduce with extensions disabled only in a safe test environment, because disabling them can change query semantics.
SELECT sqlite_version();
SQLite: SQLITE_CONSTRAINT_FUNCTION
Looking for a different code? Search another status or error code.