23
23
#include <sqlite3cc/transaction.h>
24
#include <sqlite3cc/database.h>
24
#include <sqlite3cc/connection.h>
25
25
#include <sqlite3cc/exception.h>
26
26
#include <boost/thread.hpp>
29
sqlite::basic_transaction::basic_transaction(
37
void sqlite::basic_transaction::begin()
39
int error_code = _database.exec( "BEGIN" );
40
if( error_code != SQLITE_OK ) throw sqlite_error( error_code );
44
void sqlite::basic_transaction::commit()
46
int error_code = _database.exec( "COMMIT" );
47
if( error_code != SQLITE_OK ) throw sqlite_error( error_code );
51
void sqlite::basic_transaction::rollback()
53
int error_code = _database.exec( "ROLLBACK" );
54
if( error_code != SQLITE_OK ) throw sqlite_error( error_code );
27
#include <boost/lexical_cast.hpp>
30
sqlite::detail::basic_transaction::basic_transaction(
31
connection &connection )
33
_connection( connection )
38
void sqlite::detail::basic_transaction::begin()
40
_connection.exec( "BEGIN" );
44
void sqlite::detail::basic_transaction::commit()
46
// we must reset any active queries when committing
47
reset_active_queries();
48
_connection.exec( "COMMIT" );
52
void sqlite::detail::basic_transaction::reset_active_queries()
54
sqlite3_stmt *old_handle = NULL;
55
while( sqlite3_stmt *handle =
56
sqlite3_next_stmt( _connection._handle, old_handle ) )
58
int code = sqlite3_reset( handle );
59
if( code != SQLITE_OK ) throw sqlite_error( _connection, code );
65
void sqlite::detail::basic_transaction::rollback()
67
// we must reset any active queries when rolling back
68
reset_active_queries();
69
_connection.exec( "ROLLBACK" );
73
sqlite::immediate_transaction::immediate_transaction(
74
connection &connection )
76
basic_transaction( connection )
81
void sqlite::immediate_transaction::begin()
83
_connection.exec( "BEGIN IMMEDIATE" );
58
87
sqlite::exclusive_transaction::exclusive_transaction(
88
connection &connection )
61
basic_transaction( database )
90
basic_transaction( connection )
66
95
void sqlite::exclusive_transaction::begin()
68
int error_code = _database.exec( "BEGIN EXCLUSIVE" );
69
if( error_code != SQLITE_OK ) throw sqlite_error( error_code );
97
_connection.exec( "BEGIN EXCLUSIVE" );
73
101
sqlite::recursive_transaction::recursive_transaction(
102
connection &connection )
76
basic_transaction( database )
104
basic_transaction( connection )
78
106
static unsigned long long i = 0;
107
static boost::mutex mutex;
79
108
unsigned long long my_i;
80
static boost::mutex mutex;
82
110
boost::lock_guard< boost::mutex > lock( mutex );
89
117
void sqlite::recursive_transaction::begin()
91
int error_code = _database.exec( "SAVEPOINT " + _sp_name );
92
if( error_code != SQLITE_OK ) throw sqlite_error( error_code );
119
_connection.exec( "SAVEPOINT " + _sp_name );
96
123
void sqlite::recursive_transaction::commit()
98
int error_code = _database.exec( "RELEASE " + _sp_name );
99
if( error_code != SQLITE_OK ) throw sqlite_error( error_code );
125
// we must reset any active queries when committing
126
reset_active_queries();
127
_connection.exec( "RELEASE " + _sp_name );
103
131
void sqlite::recursive_transaction::rollback()
105
int error_code = _database.exec( "ROLLBACK TO " + _sp_name );
106
if( error_code != SQLITE_OK ) throw sqlite_error( error_code );
133
// we must reset any active queries when rolling back
134
reset_active_queries();
135
_connection.exec( "ROLLBACK TO " + _sp_name );
108
137
// we have rolled back this transaction's savepoint, but the savepoint will
109
138
// remain on the transaction stack unless we also release it
110
error_code = _database.exec( "RELEASE " + _sp_name );
111
if( error_code != SQLITE_OK ) throw sqlite_error( error_code );
139
_connection.exec( "RELEASE " + _sp_name );