summaryrefslogtreecommitdiff
path: root/odb/relational/source.hxx
AgeCommit message (Collapse)AuthorFilesLines
2012-09-14Use assignment instead of construction syntax to help VC++Boris Kolpackov1-8/+14
2012-09-12Implement --output-name, --generate-schema-only, and --at-once optionsBoris Kolpackov1-1/+1
2012-09-04NULL handling improvementsBoris Kolpackov1-1/+5
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-08-31Add support for virtual data membersBoris Kolpackov1-1/+1
New test: common/virtual.
2012-08-16Add support for automatically discovering accessor/modifier functionsBoris Kolpackov1-21/+26
New options: --{accessor,modifier}-regex, --{accessor,modifier}-regex-trace.
2012-08-15Add support for member accessors/modifiersBoris Kolpackov1-96/+283
New pragmas: get, set, access. New test: common/access.
2012-08-01Add support for empty column names in composite value typesBoris Kolpackov1-19/+21
2012-07-25Simplify auto id implementation in OracleBoris Kolpackov1-22/+31
Specifically, instead of using a trigger to assign the next id from the sequence, get the next value directly in the INSERT statement.
2012-07-10Add support for custom database type mappingBoris Kolpackov1-21/+30
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom.
2012-04-27Don't generate grow code for databases that don't need itBoris Kolpackov1-13/+28
2012-04-27Support for NULL value semantics for composite valuesBoris Kolpackov1-16/+45
2012-04-27Add support for NULL pointers to objects with composite object idsBoris Kolpackov1-22/+19
2012-04-26Make session optionalBoris Kolpackov1-2/+0
2012-04-23Polymorphic inheritance supportBoris Kolpackov1-2080/+480
2012-03-07Use RAII to free select statement resultsBoris Kolpackov1-48/+58
2012-03-06Detect situations where session is required but not usedBoris Kolpackov1-0/+18
Throw session_required.
2012-03-05Add support for generating schema creation code into separate C++ fileBoris Kolpackov1-220/+4
2012-02-27Add support for specifying table prefix on namespaceBoris Kolpackov1-7/+18
2012-02-22Add support for composite object idsBoris Kolpackov1-248/+848
New pragma id_type (member). New test: common/composite-id. The composite example has also been updated.
2012-02-10Use correct truncation vector in container loading codeBoris Kolpackov1-2/+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.
2012-01-27Make container schema override object schemaBoris Kolpackov1-4/+9
2012-01-26Add clarifying commentsBoris Kolpackov1-1/+5
2012-01-26Implement support for database schemaBoris Kolpackov1-17/+24
New pragma qualifier: namespace. New pragma specifier: schema. The table specifier was extended to accept a schema prefix. New option: --default- schema. The common/schema test was extended to cover the new functionality.
2012-01-25Rename --default-schema to --schema-nameBoris Kolpackov1-1/+1
2012-01-20Add support for case where we don't send auto object id in INSERTBoris Kolpackov1-4/+11
2012-01-20Handle delayed result set freeing in all placesBoris Kolpackov1-11/+35
2012-01-20Do not select object id in container SELECT statementBoris Kolpackov1-7/+8
2012-01-20ODB compiler implementation, traits, and types test for SQL ServerBoris Kolpackov1-143/+246
2012-01-08Add support for defining composite value type as class template instantiationsBoris Kolpackov1-21/+23
2011-11-18Add newlines to the multi-line embedded schema creation statementsBoris Kolpackov1-3/+4
2011-11-15Add call to select_statement::stream_data for container types in OracleConstantin Michael1-0/+11
2011-11-09Make sure we can use same type as both container and simple valueBoris Kolpackov1-9/+6
2011-11-01Implement support for optimistic concurrencyBoris Kolpackov1-37/+280
New pragmas: optimistic, version. New test: optimistic. New database function: reload().
2011-11-01Rework statement interfaces wrt param/result passingBoris Kolpackov1-17/+31
2011-11-01Implement query image change callback machineryConstantin Michael1-0/+7
2011-10-27Add support for persistent classes without object idsBoris Kolpackov1-175/+197
New pragma id (object). New test: common/no-id.
2011-10-24Generate database schema from database model instead of C++ modelBoris Kolpackov1-15/+71
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-21Add support for const data membersBoris Kolpackov1-20/+58
Const data members are automatically treated as readonly. New test: const-member.
2011-10-21Add support for readonly membersBoris Kolpackov1-87/+164
New pragma: readonly. New test: readonly.
2011-10-21Split 'in' binding into insert/update pair; rename 'out' to selectBoris Kolpackov1-99/+196
Also add the initial infrastructure for the readonly members support. Right now the split insert/update bindings allows us to avoid sending object id in UPDATE statements. It will also allows us to support readonly members.
2011-10-21Refactor persist statement hookConstantin Michael1-24/+19
2011-10-21Rename relational::context::use_as to relational::context::need_alias_asConstantin Michael1-6/+6
2011-10-21Aesthetic changes and small bug fixesConstantin Michael1-3/+4
2011-10-21Add persist_stmt hook to handle generation of persist statement SQLConstantin Michael1-9/+28
ODB requires that Oracle persist statements include a RETURNING clause so that a generated auto_id column value may be returned.
2011-10-21Use cached auto_id flag to determine presence of auto increment columnConstantin Michael1-21/+6
2011-10-21Add init_value_extra hook to relational source generationConstantin Michael1-5/+16
2011-10-21Add flag to context indicating whether to generate grow codeConstantin Michael1-45/+72
2011-10-03Use traditional const placementBoris Kolpackov1-2/+2