Lines Matching defs:expired
8078 ** then the BLOB handle is marked as "expired".
8082 ** an expired BLOB handle fail with a return code of [SQLITE_ABORT].
8191 ** ^An attempt to read from an expired [BLOB handle] fails with an
8232 ** ^An attempt to write to an expired [BLOB handle] fails with an
8234 ** before the [BLOB handle] expired are not rolled back by the
8236 ** have been overwritten by the statement that expired the BLOB handle
23592 bft expired:2; /* 1: recompile VM immediately 2: when convenient */
87513 p->expired = 0;
90127 ** as expired.
90129 ** An expired statement means that recompilation of the statement is
90139 ** Internally, this function just sets the Vdbe.expired flag on all
90146 p->expired = iCode+1;
90407 return p==0 || p->expired;
90548 p->expired = 1;
91139 if( p->expired ){
91315 assert( v->expired==0 );
92035 p->expired = 1;
92324 pTo->expired = 1;
92328 pFrom->expired = 1;
97216 p->expired = 1;
97300 p->expired = 0;
97419 if( p->expired==1 ){
100129 p->expired = 0;
101115 ** Cause precompiled statements to expire. When an expired statement
101120 ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
101121 ** then only the currently executing statement is expired.
101123 ** If P2 is 0, then SQL statements are expired immediately. If P2 is 1,
101134 p->expired = pOp->p2+1;
101587 p->expired = 0;
136532 int (*expired)(sqlite3_stmt*);
136886 #define sqlite3_expired sqlite3_api->expired