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