Site icon EfmSoft

What does HRESULT 0x87AF000F (SQLITE_E_PROTOCOL) mean?

 
Previous Next
SQLITE_E_CANTOPEN SQLITE_E_EMPTY

SQLITE_E_PROTOCOL

SQLITE_E_PROTOCOL corresponds to SQLite SQLITE_PROTOCOL. Current SQLite documentation describes it as a rare WAL-mode race: two database connections try to start a transaction at the same time, one backs off and retries after a short delay.

What to check

PRAGMA journal_mode;
PRAGMA wal_checkpoint(PASSIVE);

SQLite: Result and Error Codes

SQLite: Write-Ahead Logging

SQLite: File locking and concurrency


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

Exit mobile version