summaryrefslogtreecommitdiff
path: root/odb/relational/mysql/context.hxx
AgeCommit message (Collapse)AuthorFilesLines
2012-07-10Add support for custom database type mappingBoris Kolpackov1-4/+45
New pragma qualifier, map, and specifiers: as, to, from. New tests: <database>/custom.
2012-04-23Polymorphic inheritance supportBoris Kolpackov1-0/+1
2012-02-22Add support for composite object idsBoris Kolpackov1-2/+5
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-26Implement support for database schemaBoris Kolpackov1-1/+1
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.
2011-10-24Generate database schema from database model instead of C++ modelBoris Kolpackov1-1/+19
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-07-22Parse and store MySQL ENUM enumerator stringsBoris Kolpackov1-0/+3
2011-07-19New design for NULL semanticsBoris Kolpackov1-4/+1
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-1/+1
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/+7
2011-03-24Generalization work for MySQL and SQLite supportBoris Kolpackov1-1/+0
2011-03-21Separate auto increment from database typeBoris Kolpackov1-7/+0
2011-03-21Cache current context in static variableBoris Kolpackov1-12/+15
2011-03-21Cosmetic changes (function renames)Boris Kolpackov1-1/+2
2011-03-21Move to new "virtual functions in context" modelBoris Kolpackov1-6/+6
2011-03-21Split MySQL code generator into common and db-specific partsBoris Kolpackov1-0/+127
The common part (in relational/) still has some MySQL-specific parts. Also, add the notion of the current context which is used to avoid explicitly passing the context object to every generator's c-tor.