What does HRESULT 0x87AF0B0A (SQLITE_E_IOERR_BLOCKED) mean?

 
Previous Next
SQLITE_E_CONSTRAINT_ROWID SQLITE_E_IOERR_NOMEM

SQLITE_E_IOERR_BLOCKED

SQLITE_E_IOERR_BLOCKED corresponds to a SQLite result code that current SQLite documentation marks as no longer used by the core.

What to check for SQLITE_E_IOERR_BLOCKED

  • Record the exact SQLite library version and whether the application uses a custom build, VFS, or extension.
  • Treat the error as application- or integration-specific until its originating layer is identified.
  • Check surrounding logs for a more specific extended result or operating-system error.
SELECT sqlite_version();

SQLite: Result and Error Codes

SQLite: Extended Result Codes

SQLite: VFS interface


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