summaryrefslogtreecommitdiff
path: root/odb/relational/source.hxx
AgeCommit message (Collapse)AuthorFilesLines
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.