Lines Matching defs:expired
7851 ** then the BLOB handle is marked as "expired".
7855 ** an expired BLOB handle fail with a return code of [SQLITE_ABORT].
7964 ** ^An attempt to read from an expired [BLOB handle] fails with an
8005 ** ^An attempt to write to an expired [BLOB handle] fails with an
8007 ** before the [BLOB handle] expired are not rolled back by the
8009 ** have been overwritten by the statement that expired the BLOB handle
22872 bft expired:2; /* 1: recompile VM immediately 2: when convenient */
85083 p->expired = 0;
87639 ** as expired.
87641 ** An expired statement means that recompilation of the statement is
87651 ** Internally, this function just sets the Vdbe.expired flag on all
87658 p->expired = iCode+1;
87892 return p==0 || p->expired;
88025 p->expired = 1;
88517 if( p->expired ){
88718 assert( v->expired==0 );
89373 p->expired = 1;
89656 pTo->expired = 1;
89660 pFrom->expired = 1;
94348 p->expired = 1;
94432 p->expired = 0;
94551 if( p->expired==1 ){
97191 p->expired = 0;
98191 ** Cause precompiled statements to expire. When an expired statement
98196 ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
98197 ** then only the currently executing statement is expired.
98199 ** If P2 is 0, then SQL statements are expired immediately. If P2 is 1,
98210 p->expired = pOp->p2+1;
98613 p->expired = 0;
132026 int (*expired)(sqlite3_stmt*);
132375 #define sqlite3_expired sqlite3_api->expired