aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/connection.hxx
AgeCommit message (Collapse)AuthorFilesLines
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-12-03Add support for executing common query using static interfaceBoris Kolpackov1-1/+5
2012-11-29Namespace management for static multi-database supportBoris Kolpackov1-1/+0
Now in libodb the odb::core namespace is split into odb::common (database- independent stuff) and odb::core proper, which imports odb::common. Each database runtime now defines odb::<db>::core namespace which also imports odb::common and adds the database-specific bits. The overall idea is that one can do using namespace odb::<db>::core just like for odb::core.
2012-10-19Implement early connection releaseBoris Kolpackov1-2/+5
2012-10-19Completion of prepared query supportBoris Kolpackov1-0/+18
2012-04-26Replace remaining std::auto_ptr uses with odb::details::unique_ptrBoris Kolpackov1-3/+3
GCC in C++11 mode issues a deprecation warning for std::auto_ptr.
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-17Remove unnecessary forward declarationBoris Kolpackov1-1/+0
2011-11-07Add support for SQL statement tracingBoris Kolpackov1-0/+20
2011-08-30Add comment with some explanationsBoris Kolpackov1-0/+4
2011-08-30Implement uniform handle management across all databasesBoris Kolpackov1-3/+8
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-0/+5
This will allow for custom connection establishment and configuration.
2011-08-21Add odb::connection classBoris Kolpackov1-1/+22
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/+21
2011-03-24Add support for clearing connection from active and uncached statementsBoris Kolpackov1-0/+14
2011-03-21Add base SQLite database classesBoris Kolpackov1-0/+73