What does HRESULT 0x87AF0913 (SQLITE_E_CONSTRAINT_VTAB) mean?

 
Previous Next
SQLITE_E_IOERR_RDLOCK SQLITE_E_IOERR_DELETE

SQLITE_E_CONSTRAINT_VTAB

SQLITE_E_CONSTRAINT_VTAB is available for application-defined virtual tables. Current SQLite core documentation says it is not normally emitted by the SQLite core itself.

What to check

  • Identify the virtual-table module and the query operation that invoked it.
  • Inspect the extension or module logs; ordinary table-constraint analysis may not apply.
  • Verify the module version and its declared constraint handling before changing the query plan or table schema.
SELECT name, sql FROM sqlite_master WHERE type = 'table' AND sql LIKE 'CREATE VIRTUAL TABLE%';

SQLite: SQLITE_CONSTRAINT_VTAB

SQLite: Virtual Tables

SQLite: Extended Result Codes


Looking for a different code? Search another status or error code.