aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/connection-factory.cxx
AgeCommit message (Collapse)AuthorFilesLines
2019-01-16Update copyright yearKaren Arutyunov1-1/+1
2018-05-24Update copyright yearKaren Arutyunov1-1/+1
2017-01-03Update copyright yearBoris Kolpackov1-1/+1
2016-08-05Adjust to threading API changes in libodbBoris Kolpackov1-2/+2
2015-11-09Make database class move-constructibleBoris Kolpackov1-36/+20
This means it can be returned by value from a function in C++11.
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-10-15Implement early connection releaseBoris Kolpackov1-0/+3
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-12-01Detect and mark connection as failedBoris Kolpackov1-3/+4
2011-08-28Add create() hook to connection factoriesBoris Kolpackov1-11/+21
This will allow the user to either establish the connection themselves (using the handle c-tor) and/or configure the connection post-creation.
2011-08-21Add odb::connection classBoris Kolpackov1-3/+3
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-11Add connection and connection factory implementationsConstantin Michael1-0/+163