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 */
61037 p->expired = 0;
61878 if( p->runOnlyOnce ) p->expired = 1;
61879 }else if( p->rc && p->expired ){
61880 /* The expired
62698 ** as expired.
62700 ** An expired statement means that recompilation of the statement is
62709 p->expired = 1;
62788 return p==0 || p->expired;
62887 p->expired = 1;
63139 if( p->pc<=0 && p->expired ){
63249 assert( v->expired==0 );
63782 p->expired = 1;
64011 pTo->expired = 1;
64014 pFrom->expired = 1;
66339 if( p->expired ) rc = SQLITE_ABORT;
67877 p->expired = 0;
67937 p->expired = 1;
68005 if( p->expired ){
70575 ** Cause precompiled statements to become expired. An expired statement
70579 ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
70586 p->expired = 1;
70918 p->expired = 0;
91085 int (*expired)(sqlite3_stmt*);
91297 #define sqlite3_expired sqlite3_api->expired