Lines Matching defs:SQLITE_BUSY

297 ** will leave the database connection open and return [SQLITE_BUSY].
424 #define SQLITE_BUSY 5 /* The database file is locked */
498 #define SQLITE_BUSY_RECOVERY (SQLITE_BUSY | (1<<8))
499 #define SQLITE_BUSY_SNAPSHOT (SQLITE_BUSY | (2<<8))
1937 ** [SQLITE_BUSY].)^</dd>
2257 ** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors
2269 ** ^If the busy callback is NULL, then [SQLITE_BUSY]
2278 ** access the database and [SQLITE_BUSY] is returned
2285 ** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY]
2295 ** SQLite returns [SQLITE_BUSY] for the first process, hoping that this
2326 ** [SQLITE_BUSY].
4070 ** ^In the legacy interface, the return value will be either [SQLITE_BUSY],
4075 ** ^[SQLITE_BUSY] means that the database engine was unable to acquire the
4123 ** error other than [SQLITE_BUSY] and [SQLITE_MISUSE]. You must call
5296 ** [SQLITE_NOMEM], [SQLITE_BUSY], and [SQLITE_INTERRUPT]) then the
6524 ** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK]
6534 ** will always return SQLITE_BUSY. The SQLite core only ever uses
7446 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
7462 ** [SQLITE_BUSY] is returned to the caller. ^In this case the call to
7510 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
7913 ** lock cannot be obtained and SQLITE_BUSY is returned. ^Even if there is a
7925 ** without blocking any further. ^SQLITE_BUSY is returned in this case.
7931 ** an SQLITE_BUSY error is encountered when processing one or more of the
7933 ** attached databases and SQLITE_BUSY is returned at the end. ^If any other
7936 ** (SQLITE_BUSY or otherwise) is encountered while processing the attached
8183 ** function returns SQLITE_BUSY.