aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/database.hxx
AgeCommit message (Collapse)AuthorFilesLines
2016-06-15Get rid of C++11 deprecation warnings for auto_ptr, exception specsBoris Kolpackov1-1/+0
In particular, std::auto_ptr is no longer mapped in C++11.
2015-11-09Make database class move-constructibleBoris Kolpackov1-0/+9
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/+4
2014-11-10Implement {query,execute}_{one,value}() shortcut functionsMichael Shepanski1-0/+62
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-04-25Add support for schema version tableBoris Kolpackov1-0/+6
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-12Completion 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-07-16Fix constructor call ambiguity in odb::pgsql::databaseBoris Kolpackov1-2/+2
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-9/+16
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-2/+0
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-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-07-19Fix incorrect argument names, make accessor order consistentBoris Kolpackov1-12/+12
2011-05-12Implement database::executeConstantin Michael1-5/+3
2011-05-11Add transaction support to databaseConstantin Michael1-4/+6
2011-05-11Uncomment calls to connection and connection-factory interfaceConstantin Michael1-4/+6
2011-05-05Add pgsql database implementationConstantin Michael1-0/+167