aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/database.cxx
AgeCommit message (Collapse)AuthorFilesLines
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