What does HRESULT 0x87AF0016 (SQLITE_E_NOLFS) mean?

 
Previous Next
SQLITE_E_MISUSE SQLITE_E_AUTH

SQLITE_E_NOLFS

SQLITE_E_NOLFS corresponds to SQLite SQLITE_NOLFS. The host environment does not provide an operating-system feature needed for the attempted operation, typically large-file support.

What to check

  • Check the operating system, filesystem, runtime, and SQLite build used by the deployed application.
  • Verify file-size limits and the application architecture on older or constrained platforms.
  • Use a supported build and storage stack rather than trying to split or alter a live database file manually.
PRAGMA page_count;
PRAGMA page_size;

SQLite: Result and Error Codes

SQLite: PRAGMA statements


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