Home | History | Annotate | Download | only in orig

Lines Matching defs:autoCommit

4898 ** KEYWORDS: {autocommit mode}
4901 ** zero if the given database connection is or is not in autocommit mode,
4902 ** respectively. ^Autocommit mode is on by default.
4903 ** ^Autocommit mode is disabled by a [BEGIN] statement.
4904 ** ^Autocommit mode is re-enabled by a [COMMIT] or [ROLLBACK].
4913 ** If another thread changes the autocommit status of the database
5800 ** database connection is in [autocommit mode].
10448 u8 autoCommit; /* The auto-commit flag. */
23902 /* 3 */ "AutoCommit" OpHelp(""),
64482 ** has made changes and is in autocommit mode, then commit those
64559 db->autoCommit = 1;
64576 && db->autoCommit
64618 db->autoCommit = 1;
64638 db->autoCommit = 1;
64677 if( db->autoCommit ){
64681 assert( db->nVdbeActive>0 || db->autoCommit==0 || db->nStatement==0 );
66672 assert( db->nVdbeWrite>0 || db->autoCommit==0
70782 assert( db->pSavepoint==0 || db->autoCommit==0 );
70804 assert( db->autoCommit==0 || db->nVTrans==0 );
70818 if( db->autoCommit ){
70819 db->autoCommit = 0;
70866 db->autoCommit = 1;
70869 db->autoCommit = 0;
70930 /* Opcode: AutoCommit P1 P2 * * *
70946 turnOnAC = desiredAutoCommit && !db->autoCommit;
70970 }else if( desiredAutoCommit!=db->autoCommit ){
70974 db->autoCommit = 1;
70978 db->autoCommit = (u8)desiredAutoCommit;
70981 db->autoCommit = (u8)(1-desiredAutoCommit);
71022 ** connection is currently not in autocommit mode, or if there are other
71066 && (db->autoCommit==0 || db->nVdbeRead>1)
73818 if( !db->autoCommit || db->nVdbeRead>1 ){
85359 if( !db->autoCommit ){
85541 if( !db->autoCommit ){
98771 if( !db->autoCommit || sqlite3BtreeIsInReadTrans(db->aDb[1].pBt) ){
98825 if( db->autoCommit ){
99572 if( !db->autoCommit ){
99591 if( db->autoCommit==0 ){
109089 if( !db->autoCommit ){
109309 ** by manually setting the autoCommit flag to true and detaching the
109313 db->autoCommit = 1;
123214 if( db->xRollbackCallback && (inTrans || !db->autoCommit) ){
124659 db->autoCommit = 1;
125002 ** Test to see whether or not the database connection is in autocommit
125003 ** mode. Return TRUE if it is and FALSE if not. Autocommit mode is on
125004 ** by default. Autocommit is disabled by a BEGIN statement and reenabled
125008 return db->autoCommit;