Lines Matching defs:SQLITE_LOCKED

766 #define SQLITE_LOCKED       6   /* A table in the database is locked */
847 #define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8))
848 #define SQLITE_LOCKED_VTAB (SQLITE_LOCKED | (2<<8))
9528 ** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
9548 ** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
9592 ** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
9658 ** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
9672 ** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
9675 ** application receives an SQLITE_LOCKED error, it may call the
9739 ** system in a deadlocked state, then SQLITE_LOCKED is returned and no
9752 ** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost
9756 ** that belong to the same connection. If there are, SQLITE_LOCKED is
9766 ** SQLITE_LOCKED.)^
17767 ** tried to do recently failed with an SQLITE_LOCKED error due to locks
17770 sqlite3 *pBlockingConnection; /* Connection that caused SQLITE_LOCKED */
70870 ** setSharedCacheTableLock()), or SQLITE_LOCKED if not.
74164 ** requested, return SQLITE_LOCKED.
80699 ** This routine will fail with SQLITE_LOCKED if there are any open
80741 ** This routine will fail with SQLITE_LOCKED if there are any open
81758 ** Return SQLITE_LOCKED if this or any other connection has an open
81769 rc = SQLITE_LOCKED;
82227 ** are considered fatal except for SQLITE_BUSY and SQLITE_LOCKED.
82230 return (rc!=SQLITE_OK && rc!=SQLITE_BUSY && ALWAYS(rc!=SQLITE_LOCKED));
82691 assert( rc!=SQLITE_BUSY && rc!=SQLITE_LOCKED );
91195 ** previous sqlite3_step() returned something other than a SQLITE_LOCKED
91199 if( (rc = p->rc&0xff)==SQLITE_BUSY || rc==SQLITE_LOCKED ){
99925 rc = SQLITE_LOCKED;
101194 if( (rc&0xFF)==SQLITE_LOCKED ){
101213 ** code will be set to SQLITE_LOCKED.
101288 rc = SQLITE_LOCKED;
101638 rc = SQLITE_LOCKED;
141959 }else if( rc!=SQLITE_INTERRUPT && (rc&0xFF)!=SQLITE_LOCKED ){
142115 rc = SQLITE_LOCKED;
142690 ** locked the sqlite3_schema table, return SQLITE_LOCKED. If any other error
155974 return SQLITE_LOCKED;
156328 return SQLITE_LOCKED;
156437 ** virtual module tables in this case, so return SQLITE_LOCKED.
156440 return SQLITE_LOCKED;
181313 case SQLITE_LOCKED: zName = "SQLITE_LOCKED"; break;
181418 /* SQLITE_LOCKED */ "database table is locked",
182341 ** function returns SQLITE_LOCKED and a checkpoint is not attempted. If
184999 ** but has received an SQLITE_LOCKED error because another connection
185006 ** If pOther is already blocked on db, then report SQLITE_LOCKED, to indicate
185046 rc = SQLITE_LOCKED; /* Deadlock detected. */
185065 ** associated with connection db. The operation will return SQLITE_LOCKED
196988 ** a transaction, causing SQLite to return SQLITE_LOCKED or
213596 ** DROP TABLE <tablename>; -- Would fail with SQLITE_LOCKED