aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/database.hxx
AgeCommit message (Collapse)AuthorFilesLines
2013-10-02Add support for SQLite 3.3.6Boris Kolpackov1-0/+9
That's what is still shipped with RHEL5.
2013-08-14Add support for object sectionsBoris Kolpackov1-0/+14
Sections are an optimization mechanism that allows the partitioning of data members of a persistent class into groups that can be separately loaded and/or updated.
2013-04-25Add support for schema version tableBoris Kolpackov1-1/+7
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-01-17Add database id constant (useful for meta-programming)Boris Kolpackov1-0/+5
2012-12-03Add support for executing common query using static interfaceBoris Kolpackov1-3/+15
2012-10-19Completion of prepared query supportBoris Kolpackov1-0/+14
2012-10-08Ground work for multi-database supportBoris Kolpackov1-0/+186
All generated code now includes database id. The database-specific database class interface has been updated to include all the database operations. The database-specific tests now use this interface.
2012-09-07Add support for passing database name as std::wstring on WindowsBoris Kolpackov1-0/+9
2012-09-06Add ability to specify SQLite vfs module in database constructorBoris Kolpackov1-1/+9
2012-03-02Reimplement C++11 support to be header-onlyBoris Kolpackov1-7/+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-5/+12
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 includesBoris Kolpackov1-1/+1
2011-11-07Add support for SQL statement tracingBoris Kolpackov1-0/+20
2011-08-24Add support for transaction multiplexingBoris Kolpackov1-1/+1
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/+9
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-11/+10
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-0/+8
2011-03-21Add base SQLite database classesBoris Kolpackov1-0/+108