aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/container-statements.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
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2014-11-25Implement bulk database operation support for Oracle and SQL ServerBoris Kolpackov1-1/+1
2013-09-10Cosmetic/consistency fixesBoris Kolpackov1-2/+2
2013-09-04Container versioning supportBoris Kolpackov1-0/+10
2013-08-30Statement processing/optimization base workBoris Kolpackov1-0/+6
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-02-05Add support for change-tracking containersBoris Kolpackov1-156/+237
ODB now supports "smart" ordered containers. Such containers get extra functions for updating and deleting individual elements. Based on this functionality implement two change-tracking containers: odb::vector (equivalent to std::vector) and QOdbList (equivalent to QList). New tests: common/container/change-tracking and qt/common/container/change- tracking.
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