aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/statement.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/statement.hxx')
-rw-r--r--odb/sqlite/statement.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/odb/sqlite/statement.hxx b/odb/sqlite/statement.hxx
index 1d48cd4..69f5a95 100644
--- a/odb/sqlite/statement.hxx
+++ b/odb/sqlite/statement.hxx
@@ -216,6 +216,10 @@ namespace odb
binding& cond,
binding& data);
+ select_statement (connection& conn,
+ const std::string& statement,
+ binding& data);
+
// Common select interface expected by the generated code.
//
public:
@@ -273,7 +277,7 @@ namespace odb
private:
bool done_;
- binding& cond_;
+ binding* cond_;
binding& data_;
};