summaryrefslogtreecommitdiff
path: root/odb/relational/source.hxx
AgeCommit message (Collapse)AuthorFilesLines
2011-07-05Fully qualify all references to odb::details namespaceConstantin Michael1-8/+8
2011-07-05Add hooks for generating extra code in container traitsConstantin Michael1-0/+7
2011-07-05Add base typedef to relational::query_parametersConstantin Michael1-0/+2
2011-07-04Implement support for database operations callbacksBoris Kolpackov1-2/+4
New object pragma: callback. New test: common/callback. New manual section: 10.1.4, "callback".
2011-06-21Distinguish between normal and auto-id params in persist statementBoris Kolpackov1-11/+43
This can be necessary to handle auto-id assignment in some databases, such as PostgreSQL.
2011-06-21Add hooks for generating extra code in object traitsBoris Kolpackov1-0/+7
2011-05-04Add support for customizing query parameter formatBoris Kolpackov1-41/+82
2011-05-04Cosmetic changesBoris Kolpackov1-1/+1
2011-04-25Add support for abstract object typesBoris Kolpackov1-133/+150
2011-04-25Reuse container traits from composite valuesBoris Kolpackov1-161/+204
2011-04-25Reuse container traits from base objectsBoris Kolpackov1-7/+11
2011-04-25Pass id binding instead of id image in container traitsBoris Kolpackov1-58/+68
This will allow us to reuse things more.
2011-04-22Initial support for non-polymorphic inheritanceBoris Kolpackov1-71/+105
Every class gets a separate table. New test: common/inheritance.
2011-04-19Move extra headers hook to the beginningBoris Kolpackov1-2/+2
2011-04-19Output object columns via traverserBoris Kolpackov1-50/+65
2011-03-28Mark parameter in create_schema as potentially unusedBoris Kolpackov1-1/+3
This can happen if more than one class is mapped to the same table.
2011-03-25Further generalization work for SQLite supportBoris Kolpackov1-7/+16
2011-03-24Generalization work for MySQL and SQLite supportBoris Kolpackov1-167/+259
2011-03-21Create indexes in separate SQL statementsBoris Kolpackov1-2/+5
This is more vendor-neutral.
2011-03-21Add default_ctor() to semantics::class_Boris Kolpackov1-4/+1
Use it in the code generators instead of calling the GCC AST macro.
2011-03-21Split MySQL code generator into common and db-specific partsBoris Kolpackov1-0/+2424
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.