aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/connection-factory.hxx
AgeCommit message (Collapse)AuthorFilesLines
2015-11-09Make database class move-constructibleBoris Kolpackov1-38/+8
This means it can be returned by value from a function in C++11.
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2014-03-19Export pooled_connection classBoris Kolpackov1-2/+2
It can be used by derived connection factories.
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-01-15Check that max connections is greater or equal than min in connection poolBoris Kolpackov1-1/+4
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-30Add default value for extra_flags argumentBoris Kolpackov1-2/+2
2011-08-28Add create() hook to connection factoriesBoris Kolpackov1-18/+34
This will allow the user to either establish the connection themselves (using the handle c-tor) and/or configure the connection post-creation.
2011-08-21Add odb::connection classBoris Kolpackov1-4/+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 single_connection_factoryBoris Kolpackov1-0/+60
2011-03-29Support for shared cache and unlock notificationBoris Kolpackov1-5/+7
2011-03-21Add base SQLite database classesBoris Kolpackov1-0/+157