SQLITE_IOERR_SHORT_READ constant

int const SQLITE_IOERR_SHORT_READ

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.

Implementation

static const int SQLITE_IOERR_SHORT_READ = 522;