SQLite error code
SQLITE_IOERR_ROLLBACK_ATOMIC
SQLITE_IOERR_ROLLBACK_ATOMIC is SQLite result code 7946, an extended code of SQLITE_IOERR.
| Result code | 7946 |
|---|---|
| Name | SQLITE_IOERR_ROLLBACK_ATOMIC |
| Primary code | SQLITE_IOERR |
What it means
The SQLITE_IOERR_ROLLBACK_ATOMIC error code indicates that the underlying operating system reported an error on the SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE file-control. This only comes up when SQLITE_ENABLE_ATOMIC_WRITE is enabled and the database is hosted on a filesystem that supports atomic writes.
Source: SQLite Result and Error Codes