SQLite error code
SQLITE_IOERR_SHORT_READ
SQLITE_IOERR_SHORT_READ is SQLite result code 522, an extended code of SQLITE_IOERR.
| Result code | 522 |
|---|---|
| Name | SQLITE_IOERR_SHORT_READ |
| Primary code | SQLITE_IOERR |
What it means
The SQLITE_IOERR_SHORT_READ error code is an extended error code for SQLITE_IOERR indicating that a read attempt in the VFS layer was unable to obtain as many bytes as was requested. This might be due to a truncated file.
Source: SQLite Result and Error Codes