From 382035d872a2cbb22fc14d3c87db93b1f39b407b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 8 Oct 2012 16:09:08 +0200 Subject: 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. --- odb/sqlite/result.hxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'odb/sqlite/result.hxx') diff --git a/odb/sqlite/result.hxx b/odb/sqlite/result.hxx index 92c1bb1..cd2d376 100644 --- a/odb/sqlite/result.hxx +++ b/odb/sqlite/result.hxx @@ -10,7 +10,7 @@ #include #include -#include // query, query_params +#include // query_base, query_params #include #include @@ -22,7 +22,8 @@ namespace odb class LIBODB_SQLITE_EXPORT result_impl_base { public: - result_impl_base (const query&, details::shared_ptr); + result_impl_base (const query_base&, + details::shared_ptr); protected: // We need to hold on to the query parameters because SQLite uses -- cgit v1.1