aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/connection.cxx
AgeCommit message (Collapse)AuthorFilesLines
2012-09-19Make sure we support older versions of SQLite (3.5.3 and up)Boris Kolpackov1-0/+2
2012-09-06Add ability to specify SQLite vfs module in database constructorBoris Kolpackov1-1/+5
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-11-07Add support for SQL statement tracingBoris Kolpackov1-2/+2
2011-08-30Implement uniform handle management across all databasesBoris Kolpackov1-10/+10
Also use the auto_handle template instead of the raw handle in connection, statement, and result classes. This removes a lot of brittle "exception safety guarantee" code that we had in those classes.
2011-08-28Add support for creating connection from existing handleBoris Kolpackov1-2/+21
This will allow for custom connection establishment and configuration.
2011-08-24Add support for transaction multiplexingBoris Kolpackov1-9/+0
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-22Enable foreign key constraints checking in SQLiteBoris Kolpackov1-0/+10
Due to bugs in SQLite DDL foreign key support, we have to temporarily disable foreign keys when re-creating the schema. New manual section: 12.5.3, "Foreign Key Constraints".
2011-08-21Add odb::connection classBoris Kolpackov1-1/+42
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-29Support for shared cache and unlock notificationBoris Kolpackov1-3/+52
2011-03-24Add support for clearing connection from active and uncached statementsBoris Kolpackov1-7/+25
2011-03-21Add base SQLite database classesBoris Kolpackov1-0/+59