What does HRESULT 0x87AF0D0A (SQLITE_E_IOERR_ACCESS) mean?

 
Previous Next
SQLITE_E_IOERR_NOMEM SQLITE_E_IOERR_CHECKRESERVEDLOCK

SQLITE_E_IOERR_ACCESS

SQLITE_E_IOERR_ACCESS corresponds to SQLITE_IOERR_ACCESS: an I/O error occurred in the VFS xAccess method while SQLite checked a path or file-access condition.

What to check

  • Verify the complete path and parent directory permissions for the account that opens the database.
  • Check mount or share availability; access checks can fail when a filesystem disappears or becomes unavailable.
  • Capture the actual database, journal, WAL, and temporary paths used by the application.
PRAGMA database_list;

SQLite: Result and Error Codes

SQLite: Extended Result Codes

SQLite: VFS interface

SQLite: Temporary Files


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