summaryrefslogtreecommitdiff
path: root/odb/relational/sqlite/context.cxx
AgeCommit message (Collapse)AuthorFilesLines
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
2012-01-20Cosmetic changesBoris Kolpackov1-11/+9
2011-10-24Generate database schema from database model instead of C++ modelBoris Kolpackov1-29/+37
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-6/+6
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-04-25Add support for mapping to database types based on type aliasesBoris Kolpackov1-2/+2
This allows us to, for example, always map size_t to 64-bit type. The current implementation does not work for containers. It is not clear whether it will be possible to make it work using the GCC AST.
2011-04-19Implement automatic mapping for C++ enumsBoris Kolpackov1-0/+24
2011-03-25Further generalization work for SQLite supportBoris Kolpackov1-1/+1
2011-03-24Generalization work for MySQL and SQLite supportBoris Kolpackov1-0/+3
2011-03-21Implement grow test for SQLiteBoris Kolpackov1-25/+1
2011-03-21Add support for SQLite type system, adjust code generatorsBoris Kolpackov1-363/+127
2011-03-21Infrastructure setup and schema generation for SQLiteBoris Kolpackov1-0/+632