summaryrefslogtreecommitdiff
path: root/odb/relational/source.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-08-14 09:37:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-11-11 10:29:49 +0200
commit6fc9edcb2c54d395ea5d9a77bde882cd8ba9ec03 (patch)
tree0be9e0733fba6b6b1a3fa3ce66e7229a3f8c8de1 /odb/relational/source.cxx
parentd59e3c27450747e5a04585ee9e943376b5bcfa41 (diff)
Draft implementation for INSERT
Diffstat (limited to 'odb/relational/source.cxx')
-rw-r--r--odb/relational/source.cxx19
1 files changed, 18 insertions, 1 deletions
diff --git a/odb/relational/source.cxx b/odb/relational/source.cxx
index 33bda4b..6e7ff34 100644
--- a/odb/relational/source.cxx
+++ b/odb/relational/source.cxx
@@ -174,10 +174,27 @@ traverse_object (type& c)
// Functions (abstract and concrete).
//
- // id (image_type)
+ // id(), version()
//
if (!poly_derived && id != 0 && !base_id)
{
+ // id (id_image_type)
+ //
+ if (auto_id)
+ {
+ os << traits << "::id_type" << endl
+ << traits << "::" << endl
+ << "id (const id_image_type& i)"
+ << "{"
+ << db << "::database* db (0);"
+ << "ODB_POTENTIALLY_UNUSED (db);"
+ << endl
+ << "id_type id;";
+ init_id_value_member_->traverse (*id);
+ os << "return id;"
+ << "}";
+ }
+
// id (image)
//
if (options.generate_query ())