aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/statement.hxx
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-09-13 16:11:02 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-09-13 16:11:02 +0200
commit3d76b241bc6af7f7f3beda3cc9d6609cf5db0f43 (patch)
tree9ce89742a6133a784da2e9f64439fcec2d8cf3a2 /odb/oracle/statement.hxx
parent7234741fcd3824b36c7292e8245cc59bbe7de13e (diff)
Implement LOB read and write support using OCI callbacks
Diffstat (limited to 'odb/oracle/statement.hxx')
-rw-r--r--odb/oracle/statement.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/odb/oracle/statement.hxx b/odb/oracle/statement.hxx
index e999134..ffdb91a 100644
--- a/odb/oracle/statement.hxx
+++ b/odb/oracle/statement.hxx
@@ -50,6 +50,11 @@ namespace odb
void
bind_result (bind*, std::size_t count);
+ // Finalize the result by invoking the user provided callbacks for the
+ // final time.
+ //
+ void finalize_result (bind*, std::size_t count);
+
protected:
connection& conn_;
auto_handle<OCIStmt> stmt_;
@@ -85,6 +90,7 @@ namespace odb
select_statement& operator= (const select_statement&);
private:
+ binding& data_;
bool done_;
};