Tag: cws_dev300_dba30d User: oj Date: 2008-05-30 06:01:39+0000 Modified: dba/connectivity/source/drivers/jdbc/CallableStatement.cxx dba/connectivity/source/drivers/jdbc/ResultSet.cxx
Log: #i90114# correct signature of methods File Changes: Directory: /dba/connectivity/source/drivers/jdbc/ ================================================= File [changed]: CallableStatement.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/CallableStatement.cxx?r1=1.20&r2=1.20.20.1 Delta lines: +5 -5 ------------------- --- CallableStatement.cxx 2008-04-10 09:23:00+0000 1.20 +++ CallableStatement.cxx 2008-05-30 06:01:36+0000 1.20.20.1 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: CallableStatement.cxx,v $ - * $Revision: 1.20 $ + * $Revision: 1.20.20.1 $ * * This file is part of OpenOffice.org. * @@ -500,7 +500,7 @@ 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 @@ 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 @@ 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; File [changed]: ResultSet.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/ResultSet.cxx?r1=1.35&r2=1.35.20.1 Delta lines: +5 -5 ------------------- --- ResultSet.cxx 2008-04-10 09:27:57+0000 1.35 +++ ResultSet.cxx 2008-05-30 06:01:36+0000 1.35.20.1 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: ResultSet.cxx,v $ - * $Revision: 1.35 $ + * $Revision: 1.35.20.1 $ * * This file is part of OpenOffice.org. * @@ -478,7 +478,7 @@ SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); if( 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; @@ -501,7 +501,7 @@ SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); if( 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; @@ -523,7 +523,7 @@ SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); if( 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; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
