/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to include/sqlite3cc/transaction.h

  • Committer: edam
  • Date: 2010-07-29 06:39:13 UTC
  • Revision ID: edam@waxworlds.org-20100729063913-wvcvkogsa2alwkhr
- moved basic_statement::operator <<() back to basic_statement and just create another specialisation in command so that it can use sqlite::exec

Show diffs side-by-side

added added

removed removed

224
224
                database &database )
225
225
                :
226
226
                _transaction( database ),
227
 
                _database( database ),
228
227
                _released( false )
229
228
        {
230
229
                _transaction.begin();
263
262
        /** the transaction */
264
263
        T _transaction;
265
264
 
266
 
        /** the database */
267
 
        database &_database;
268
 
 
269
265
        /** have we released the transaction yet? */
270
266
        bool _released;
271
267