aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/error.hxx
AgeCommit message (Collapse)AuthorFilesLines
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-5/+1
2011-11-16Fix misspelled file nameBoris Kolpackov1-4/+4
2011-07-22Get rid of libpq-fe.h inclusion in public headersBoris Kolpackov1-3/+1
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-05-13Add PGresult pointer wrapperConstantin Michael1-14/+11
2011-05-12Implement database::executeConstantin Michael1-0/+7
2011-05-11Modify error to allow for libpq resource cleanupConstantin Michael1-3/+13
2011-05-09Add error supportConstantin Michael1-0/+33