Home | History | Annotate | Download | only in common

Lines Matching full:transaction

54 // Note: the constructor does NOT Begin a transaction.
63 // onset of a transaction. This avoids SQLITE_BUSY errors, without
111 // The following virtual methods provide notification of true transaction
112 // boundaries as they are crossed by a top nested transaction.
125 // Returns the current top nested transaction associated with this site
131 // Sets or clears the top nested transaction associated with this site
144 // Really there is only one transaction, the top transaction.
146 // A nested transaction commits with respect to the top transaction.
147 // That is, even though the nested transaction commits, the permanence of its
148 // effects depends on the top transaction committing. If the top
149 // transaction rollsback, the results of the nested transaction are backed out.
150 // If any nested transaction aborts, the top transaction ultimately rollsback
153 // Note: If a nested transaction is open for a particular db connection, an
154 // attempt to open a non-nested transaction (class SQLTransaction) will fail.