aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/transaction-impl.cxx
AgeCommit message (Collapse)AuthorFilesLines
2012-10-19Implement early connection releaseBoris Kolpackov1-7/+18
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2011-08-24Add support for transaction multiplexingBoris Kolpackov1-7/+28
Also delay getting a connection until after we do all the sanity checks (e.g., that there is no active transaction). Otherwise we are running risk of getting blocked rather than throwing an exception.
2011-08-21Add odb::connection classBoris Kolpackov1-6/+6
This abstract class represents a connection to the database. One can use it to start a transaction or to execute a native statement out of a transaction. Before we had concrete connection classes in the database runtime libraries (e.g., odb::mysql::connection). Now these classes derive from odb::connection.
2011-03-29Release connection immediately after commit or rollbackBoris Kolpackov1-2/+2
2011-03-29Add support for starting immediate and exclusive transactionsBoris Kolpackov1-2/+21
2011-03-24Add support for clearing connection from active and uncached statementsBoris Kolpackov1-0/+13
2011-03-21Add base SQLite database classesBoris Kolpackov1-0/+48