summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/jdbc
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-06-25 10:42:12 +0000
committerKurt Zenker <kz@openoffice.org>2008-06-25 10:42:12 +0000
commit9427f752e11673a7e3c944a86c6a127edffbb528 (patch)
treeadd3b676ea46d0a5b00b39086a3effd5ef1a73e9 /connectivity/source/drivers/jdbc
parent624488820328d365a40b12437cc2670dfe0416a5 (diff)
INTEGRATION: CWS dba30d (1.20.20); FILE MERGED
2008/05/30 06:01:36 oj 1.20.20.1: #i90114# correct signature of methods
Diffstat (limited to 'connectivity/source/drivers/jdbc')
-rw-r--r--connectivity/source/drivers/jdbc/CallableStatement.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/jdbc/CallableStatement.cxx b/connectivity/source/drivers/jdbc/CallableStatement.cxx
index 0534e7c0e5..f98d31de33 100644
--- a/connectivity/source/drivers/jdbc/CallableStatement.cxx
+++ b/connectivity/source/drivers/jdbc/CallableStatement.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: CallableStatement.cxx,v $
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
* This file is part of OpenOffice.org.
*
@@ -500,7 +500,7 @@ Reference< starsdbc::XArray > SAL_CALL java_sql_CallableStatement::getArray( sal
if( t.pEnv ){
createStatement(t.pEnv);
// temporaere Variable initialisieren
- static const char * cSignature = "(I)Ljava/sql/Ref;";
+ static const char * cSignature = "(I)Ljava/sql/Array;";
static const char * cMethodName = "getArray";
// Java-Call absetzen
static jmethodID mID = NULL;
@@ -523,7 +523,7 @@ Reference< starsdbc::XClob > SAL_CALL java_sql_CallableStatement::getClob( sal_I
if( t.pEnv ){
createStatement(t.pEnv);
// temporaere Variable initialisieren
- static const char * cSignature = "(I)Ljava/sql/Ref;";
+ static const char * cSignature = "(I)Ljava/sql/Clob;";
static const char * cMethodName = "getClob";
// Java-Call absetzen
static jmethodID mID = NULL;
@@ -545,7 +545,7 @@ Reference< starsdbc::XBlob > SAL_CALL java_sql_CallableStatement::getBlob( sal_I
if( t.pEnv ){
createStatement(t.pEnv);
// temporaere Variable initialisieren
- static const char * cSignature = "(I)Ljava/sql/Ref;";
+ static const char * cSignature = "(I)Ljava/sql/Blob;";
static const char * cMethodName = "getBlob";
// Java-Call absetzen
static jmethodID mID = NULL;