aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/container-statements.hxx
AgeCommit message (Collapse)AuthorFilesLines
2012-02-10Don't allocate unnecessary entries in container truncation arrayBoris Kolpackov1-8/+2
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-21Do not select object id in container SELECT statementBoris Kolpackov1-5/+21
2011-11-09Avoid copying statement text if it is statically allocatedBoris Kolpackov1-2/+5
2011-10-28Implement returning of auto id using RETURNING clause in PostgreSQLBoris Kolpackov1-1/+2
Before we used a separate SELECT lastval() query which was both inefficient and error-prone in cases where INSERT may cause triggers to override the last value.
2011-07-22Get rid of libpq-fe.h inclusion in public headersBoris Kolpackov1-0/+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-06-29Use container traits column counts to specifiy container statment countsConstantin Michael1-2/+2
2011-06-22Correct typosConstantin Michael1-5/+5
2011-05-27Add container-statementsConstantin Michael1-0/+315