aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/database.cxx
AgeCommit message (Collapse)AuthorFilesLines
2011-08-22Enable foreign key constraints checking in SQLiteBoris Kolpackov1-2/+7
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-37/+4
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-29Add support for starting immediate and exclusive transactionsBoris Kolpackov1-1/+19
2011-03-21Add base SQLite database classesBoris Kolpackov1-0/+103