aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/database.cxx
AgeCommit message (Collapse)AuthorFilesLines
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-10-08Ground work for multi-database supportBoris Kolpackov1-4/+9
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-03-02Reimplement C++11 support to be header-onlyBoris Kolpackov1-4/+4
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/+10
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-0/+6
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-40/+5
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-05-13Add PGresult pointer wrapperConstantin Michael1-10/+14
2011-05-12Implement database::executeConstantin Michael1-6/+28
2011-05-11Add transaction support to databaseConstantin Michael1-6/+9
2011-05-11Uncomment calls to connection and connection-factory interfaceConstantin Michael1-20/+13
2011-05-05Add pgsql database implementationConstantin Michael1-0/+231