Small. Fast. Reliable.
Choose any three.

SQLite C Interface

Flags for the xAccess VFS method

#define SQLITE_ACCESS_EXISTS    0
#define SQLITE_ACCESS_READWRITE 1
#define SQLITE_ACCESS_READ      2

These integer constants can be used as the third parameter to the xAccess method of an sqlite3_vfs object. They determine what kind of permissions the xAccess method is looking for. With SQLITE_ACCESS_EXISTS, the xAccess method simply checks whether the file exists. With SQLITE_ACCESS_READWRITE, the xAccess method checks whether the file is both readable and writable. With SQLITE_ACCESS_READ, the xAccess method checks whether the file is readable.

See also lists of Objects, Constants, and Functions.