Lines Matching refs:expired
4963 ** then the BLOB handle is marked as "expired".
4967 ** a expired BLOB handle fail with an return code of [SQLITE_ABORT].
5047 ** ^An attempt to read from an expired [BLOB handle] fails with an
5081 ** ^An attempt to write to an expired [BLOB handle] fails with an
5083 ** before the [BLOB handle] expired are not rolled back by the
5085 ** have been overwritten by the statement that expired the BLOB handle
17819 u8 expired; /* True if the VM needs to be recompiled */
47571 p->expired = 0;
49650 if( p->runOnlyOnce ) p->expired = 1;
49651 }else if( p->rc && p->expired ){
49652 /* The expired flag was set on the VDBE before the first call
50465 ** as expired.
50467 ** An expired statement means that recompilation of the statement is
50476 p->expired = 1;
50555 return p==0 || p->expired;
50652 p->expired = 1;
50860 if( p->pc<=0 && p->expired ){
50960 v->expired = 0;
51480 p->expired = 1;
51735 pTo->expired = 1;
51738 pFrom->expired = 1;
55302 p->expired = 0;
55424 if( p->expired ){
57705 ** Cause precompiled statements to become expired. An expired statement
57709 ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
57716 p->expired = 1;
76059 int (*expired)(sqlite3_stmt*);
76236 #define sqlite3_expired sqlite3_api->expired