summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/jdbc/CallableStatement.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2001-04-30 09:16:19 +0000
committerOcke Janssen <oj@openoffice.org>2001-04-30 09:16:19 +0000
commit1add6c0b3e010744567a1ed02909733c1344a717 (patch)
tree98705bd42d72f7c83186b1b197f86dfd7936e090 /connectivity/source/drivers/jdbc/CallableStatement.cxx
parentc5468e9272479b710e67e671eca37150b9db932f (diff)
#86528# some outlining
Diffstat (limited to 'connectivity/source/drivers/jdbc/CallableStatement.cxx')
-rw-r--r--connectivity/source/drivers/jdbc/CallableStatement.cxx15
1 files changed, 13 insertions, 2 deletions
diff --git a/connectivity/source/drivers/jdbc/CallableStatement.cxx b/connectivity/source/drivers/jdbc/CallableStatement.cxx
index ba825db05844..9bdc68a4d177 100644
--- a/connectivity/source/drivers/jdbc/CallableStatement.cxx
+++ b/connectivity/source/drivers/jdbc/CallableStatement.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: CallableStatement.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: jl $ $Date: 2001-03-20 17:03:16 $
+ * last change: $Author: oj $ $Date: 2001-04-30 10:13:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -586,5 +586,16 @@ Reference< starsdbc::XRef > SAL_CALL java_sql_CallableStatement::getRef( sal_Int
// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
return out==0 ? 0 : new java_sql_Ref( t.pEnv, out );
}
+// -----------------------------------------------------------------------------
+void SAL_CALL java_sql_CallableStatement::acquire() throw(::com::sun::star::uno::RuntimeException)
+{
+ java_sql_PreparedStatement::acquire();
+}
+// -----------------------------------------------------------------------------
+void SAL_CALL java_sql_CallableStatement::release() throw(::com::sun::star::uno::RuntimeException)
+{
+ java_sql_PreparedStatement::release();
+}
+// -----------------------------------------------------------------------------