Seaquel
SQLite error code

SQLITE_IOERR_DIR_FSYNC

SQLITE_IOERR_DIR_FSYNC is SQLite result code 1290, an extended code of SQLITE_IOERR.

Result code1290
NameSQLITE_IOERR_DIR_FSYNC
Primary codeSQLITE_IOERR

What it means

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 fsync() on a directory. The unix VFS attempts to fsync() 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 fsync().

Source: SQLite Result and Error Codes