aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/database.ixx
AgeCommit message (Collapse)AuthorFilesLines
2017-01-03Update copyright yearBoris Kolpackov1-1/+1
2015-11-09Make database class move-constructibleBoris Kolpackov1-0/+16
This means it can be returned by value from a function in C++11.
2015-03-27Get pointer_type from correct traits (object, view), part 2asBoris Kolpackov1-5/+5
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2014-11-25Implement bulk database operation support for Oracle and SQL ServerBoris Kolpackov1-0/+7
2014-11-10Implement {query,execute}_{one,value}() shortcut functionsMichael Shepanski1-0/+120
Useful in situations where the query is know to return at most one element (*_one) or exactly one element (*_value).
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-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-12-03Add support for executing common query using static interfaceBoris Kolpackov1-12/+39
2012-10-19Completion of prepared query supportBoris Kolpackov1-0/+26
2012-10-08Ground work for multi-database supportBoris Kolpackov1-0/+378
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-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-18/+0
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-21Add odb::connection classBoris Kolpackov1-2/+24
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-21Add base SQLite database classesBoris Kolpackov1-0/+16