/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-27 15:46:42 UTC
  • Revision ID: edam@waxworlds.org-20100727154642-1uxrjkpxhp7xl6hq
- moved null_t, exec_t and set_index_t to detail namespace so only their extern instantiations are in the main namespace
- added immediate transation

Show diffs side-by-side

added added

removed removed

76
76
//                                                                implementation
77
77
protected:
78
78
 
79
 
        /** close any in-progress statements */
80
 
        void invalidate_queries();
81
 
 
82
 
        /** the database on which to act */
 
79
        /* the database on which to act */
83
80
        database &_database;
84
81
 
85
82
};
259
256
//                                                                implementation
260
257
protected:
261
258
 
262
 
        /** the transaction */
 
259
        /* the transaction */
263
260
        T _transaction;
264
261
 
265
 
        /** have we released the transaction yet? */
 
262
        /* have we released the transaction yet? */
266
263
        bool _released;
267
264
 
268
265
};