aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/connection.cxx
AgeCommit message (Collapse)AuthorFilesLines
2011-07-22Get rid of libpq-fe.h inclusion in public headersBoris Kolpackov1-0/+2
The problem with libpq-fe.h is that it is installed in unpredictable places on different platforms. As a result, a user that uses ODB with PostgreSQL (and who doesn't really know or care about libpq) is forced to make sure their application is able to find and include libpq-fe.h correctly. Luckily for us, we only use a handful of libpq pointers in public headers and the workaround is to forward declare them and use that instead of including libpq-fe.h (which is instead included in source files).
2011-07-14Forbid connection to database if server integer_datetimes is offConstantin Michael1-3/+5
2011-07-13Make process notification callback staticConstantin Michael1-5/+2
2011-07-13Get integer_datetimes server var on connection to serverConstantin Michael1-0/+8
2011-07-12Suppress server notification messagesConstantin Michael1-0/+10
2011-07-11Free prepared statement cache before closing connectionBoris Kolpackov1-0/+4
2011-05-27Add statement-cache and enable relevant functionality in connectionConstantin Michael1-44/+3
2011-05-11Add connection and connection factory implementationsConstantin Michael1-0/+87