SQLITE_IOERR_DIR_FSYNC constant
int
const SQLITE_IOERR_DIR_FSYNC
The SQLITE_IOERR_DIR_FSYNC error code is an extended error code for SQLITE_IOERR indicating an I/O error in the VFS layer while trying to invoke fsyncstatic const int ) on a directory.
The unix VFS attempts to fsyncstatic const int ) directories after creating or deleting certain files to ensure that those files will still appear in the filesystem following a power loss or system crash.
This error code indicates a problem attempting to perform that fsyncstatic const int ).
Implementation
static const int SQLITE_IOERR_DIR_FSYNC = 1290;