Lines Matching full:expired
5799 ** then the BLOB handle is marked as "expired".
5803 ** an expired BLOB handle fail with a return code of [SQLITE_ABORT].
5907 ** ^An attempt to read from an expired [BLOB handle] fails with an
5941 ** ^An attempt to write to an expired [BLOB handle] fails with an
5943 ** before the [BLOB handle] expired are not rolled back by the
5945 ** have been overwritten by the statement that expired the BLOB handle
13146 u8 expired; /* True if the VM needs to be recompiled */
61026 p->expired = 0;
61867 if( p->runOnlyOnce ) p->expired = 1;
61868 }else if( p->rc && p->expired ){
61869 /* The expired flag was set on the VDBE before the first call
62687 ** as expired.
62689 ** An expired statement means that recompilation of the statement is
62698 p->expired = 1;
62777 return p==0 || p->expired;
62876 p->expired = 1;
63128 if( p->pc<=0 && p->expired ){
63238 assert( v->expired==0 );
63771 p->expired = 1;
64000 pTo->expired = 1;
64003 pFrom->expired = 1;
66328 if( p->expired ) rc = SQLITE_ABORT;
67866 p->expired = 0;
67926 p->expired = 1;
67994 if( p->expired ){
70564 ** Cause precompiled statements to become expired. An expired statement
70568 ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
70575 p->expired = 1;
70907 p->expired = 0;
91074 int (*expired)(sqlite3_stmt*);
91286 #define sqlite3_expired sqlite3_api->expired