aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/database.cxx
AgeCommit message (Collapse)AuthorFilesLines
2012-09-07Add support for passing database name as std::wstring on WindowsBoris Kolpackov1-0/+63
2012-09-06Add ability to specify SQLite vfs module in database constructorBoris Kolpackov1-0/+4
2012-03-02Reimplement C++11 support to be header-onlyBoris Kolpackov1-2/+2
This way, the same build of the runtime libraries can be used in both C++98 and C++11 modes. This is important for when runtimes are installed or packaged.
2012-03-01Add support for using C++11 std::unique_ptr to pass connection factoryBoris Kolpackov1-4/+8
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-0/+18
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-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