From 858b2d37950c33cdf076382849de952ea44d7779 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 26 Nov 2014 10:58:50 +0200 Subject: Reimplement image copying for Oracle Now we no longer "steal" descriptors (destructive copy). Instead, for LOBs, we clone the locator using OCILobAssign(). For date-time types we extract the data during copying. As a result of this change we no longer need to track image changes and rebind the statements. --- odb/relational/oracle/source.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'odb') diff --git a/odb/relational/oracle/source.cxx b/odb/relational/oracle/source.cxx index 3a6b46a..2a795e2 100644 --- a/odb/relational/oracle/source.cxx +++ b/odb/relational/oracle/source.cxx @@ -580,7 +580,7 @@ namespace relational os << "if (" << i << ".change_callback_.callback != 0)" << endl << "(" << i << ".change_callback_.callback) (" << - i << ".change_callback_.context, 0);"; + i << ".change_callback_.context);"; if (poly_derived) os << "}"; -- cgit v1.1