Home | History | Annotate | Download | only in dist

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 */
61054 p->expired = 0;
61895 if( p->runOnlyOnce ) p->expired = 1;
61896 }else if( p->rc && p->expired ){
61897 /* The expired flag was set on the VDBE before the first call
62715 ** as expired.
62717 ** An expired statement means that recompilation of the statement is
62726 p->expired = 1;
62805 return p==0 || p->expired;
62904 p->expired = 1;
63156 if( p->pc<=0 && p->expired ){
63266 assert( v->expired==0 );
63799 p->expired = 1;
64028 pTo->expired = 1;
64031 pFrom->expired = 1;
66356 if( p->expired ) rc = SQLITE_ABORT;
67894 p->expired = 0;
67954 p->expired = 1;
68022 if( p->expired ){
70592 ** Cause precompiled statements to become expired. An expired statement
70596 ** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
70603 p->expired = 1;
70935 p->expired = 0;
91110 int (*expired)(sqlite3_stmt*);
91322 #define sqlite3_expired sqlite3_api->expired