aboutsummaryrefslogtreecommitdiff
path: root/odb/relational/pgsql/context.cxx
AgeCommit message (Collapse)AuthorFilesLines
2015-07-02C++ type mapping support for container elementsasBoris Kolpackov1-8/+14
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2015-01-23Handle name truncation in PostgreSQLBoris Kolpackov1-0/+75
2014-11-25Implement bulk database operation support for Oracle and SQL ServerBoris Kolpackov1-0/+1
2013-10-15Automatically map C++11 enum classes (strong enums)Boris Kolpackov1-8/+1
2013-08-14Add support for object sectionsBoris Kolpackov1-17/+29
Sections are an optimization mechanism that allows the partitioning of data members of a persistent class into groups that can be separately loaded and/or updated.
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-01-24Add support for mapping char[N] to CHAR/VARCHAR database typesBoris Kolpackov1-3/+36
Also improve query support for arrays (decaying).
2012-12-12Add support for SQL name transformationsBoris Kolpackov1-0/+2
2012-09-04NULL handling improvementsBoris Kolpackov1-21/+23
Add support for specifying NULL-ness for types with built-in mapping. Handle Oracle [N]VARCHAR2 and SQLite FLOAT oddities using this mechanism instead of overriding it at the schema generation level. Also use the is_null argument that is passed to value_traits::init_image() to indicate whether the value can be NULL.
2012-07-25Clean up PostgreSQL auto id implementationBoris Kolpackov1-1/+1
Specifically, avoid sending the auto id value.
2012-07-10Add support for custom database type mappingBoris Kolpackov1-35/+80
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom.
2012-04-23Polymorphic inheritance supportBoris Kolpackov1-1/+3
2012-03-07Use RAII to free select statement resultsBoris Kolpackov1-0/+1
2012-02-22Add support for composite object idsBoris Kolpackov1-8/+9
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated.
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2012-01-20Add support for case where we don't send auto object id in INSERTBoris Kolpackov1-0/+1
2011-10-24Generate database schema from database model instead of C++ modelBoris Kolpackov1-58/+45
We now first create the so-called database model from C++ model and then use that to generate the database schema. The new approach also adds more general support for primary/foreign keys, including multi- column keys. Finally, for MySQL we now generate out-of-line foreign key definitions. Because MySQL does not support deferred constraints checking, deferred foreign keys are written commented out, for documentation.
2011-10-21Rename relational::context::use_as to relational::context::need_alias_asConstantin Michael1-1/+1
2011-10-21Add a context flag indicating whether AS SQL keyword should be used for aliasesConstantin Michael1-0/+1
2011-10-21Add flag to context indicating whether to generate grow codeConstantin Michael1-0/+1
2011-09-19Rename generation_failed exception to operation_failedBoris Kolpackov1-9/+9
A more generic name is required since it is now used in both generator and processor (and in the future may be used validator).
2011-08-31Rename comp_value() predicate to composite()Boris Kolpackov1-1/+1
2011-08-31Cosmetic changes and cleanupsBoris Kolpackov1-1/+1
Rename some functions to have consistent names. Add object() predicate.
2011-07-19New design for NULL semanticsBoris Kolpackov1-10/+2
Now, instead of being specified as part of the SQL type with the type pragma, there are separate null and not_null pragmas. The not_null pragma was used to control NULL-ness of object pointers. Now the two pragmas are used consistently for object pointers and simple values (and in the future will work for composite values and containers).
2011-07-14Map unsigned short and int C++ types to SMALLINT and INTEGER PostgreSQL typesConstantin Michael1-2/+2
2011-07-12Correct bugs in PostgreSQL sql type parserConstantin Michael1-2/+10
2011-07-05Add enum support to PostgreSQLConstantin Michael1-0/+24
2011-07-05Implement remainder of PostgreSQL contextConstantin Michael1-237/+151
2011-07-05Add PostgreSQL FLOAT and timezone suffix parsingConstantin Michael1-1/+58
2011-07-05Correct db_id_type for PostgreSQL TEXT typeConstantin Michael1-1/+1
2011-07-05Remove support for timezone types TIMETZ and TIMESTAMPTZConstantin Michael1-2/+10
2011-07-05Add pgsql sql_type and sql type parsing implementationConstantin Michael1-0/+620