aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/pgsql-types.hxx
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-01-20Add note on UUID formatBoris Kolpackov1-1/+1
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-02-07Rename boolean to boolean_ (macro clash)Boris Kolpackov1-1/+1
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-07-22Get rid of libpq-fe.h inclusion in public headersBoris Kolpackov1-1/+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-07-13Add support for DATE, TIME and TIMESTAMP SQL typesConstantin Michael1-0/+3
2011-06-24Forward declare libpq type Oid in pgsql-types.hxxConstantin Michael1-0/+2
2011-06-20Add missing buffer types to bindConstantin Michael1-1/+6
2011-05-26Remove unnecessary headersConstantin Michael1-4/+0
2011-05-25Aesthetic changes and small refactoringsConstantin Michael1-6/+1
2011-05-24Correct bind struct and add initial buffer type enumerationConstantin Michael1-1/+18
2011-05-18Add binding structureConstantin Michael1-0/+38