aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/simple-object-result.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-08 16:09:08 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-08 16:09:08 +0200
commit382035d872a2cbb22fc14d3c87db93b1f39b407b (patch)
treeeae01dfdad70ffc916e3dc23a6f279a1a25a1556 /odb/sqlite/simple-object-result.hxx
parentd8fed1d9dbab80e14033b385c604abb41cc84390 (diff)
Ground work for multi-database support
All generated code now includes database id. The database-specific database class interface has been updated to include all the database operations. The database-specific tests now use this interface.
Diffstat (limited to 'odb/sqlite/simple-object-result.hxx')
-rw-r--r--odb/sqlite/simple-object-result.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/odb/sqlite/simple-object-result.hxx b/odb/sqlite/simple-object-result.hxx
index 8c748bc..08132b1 100644
--- a/odb/sqlite/simple-object-result.hxx
+++ b/odb/sqlite/simple-object-result.hxx
@@ -14,7 +14,7 @@
#include <odb/details/shared-ptr.hxx>
#include <odb/sqlite/version.hxx>
-#include <odb/sqlite/forward.hxx> // query
+#include <odb/sqlite/forward.hxx> // query_base
#include <odb/sqlite/result.hxx>
#include <odb/sqlite/statement.hxx>
@@ -29,11 +29,11 @@ namespace odb
public:
typedef odb::object_result_impl<T> base_type;
- typedef typename base_type::object_traits object_traits;
- typedef typename base_type::object_type object_type;
typedef typename base_type::id_type id_type;
-
+ typedef typename base_type::object_type object_type;
typedef typename base_type::pointer_type pointer_type;
+
+ typedef object_traits_impl<object_type, id_sqlite> object_traits;
typedef typename base_type::pointer_traits pointer_traits;
typedef typename object_traits::statements_type statements_type;
@@ -41,7 +41,7 @@ namespace odb
virtual
~object_result_impl ();
- object_result_impl (const query&,
+ object_result_impl (const query_base&,
details::shared_ptr<select_statement>,
statements_type&);