diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-10-18 12:24:06 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-10-18 12:24:06 +0000 |
commit | 630b707f5229efa7d6278deab6d860697bc61e86 (patch) | |
tree | 5d444a5614367f1acf5e5add6171bde78cfce5f9 /connectivity/source/drivers/jdbc/SQLException.cxx | |
parent | f1381d4c7283a89fe241eebd59476cdd53f0b186 (diff) |
#93302# correct getTypes
Diffstat (limited to 'connectivity/source/drivers/jdbc/SQLException.cxx')
-rw-r--r-- | connectivity/source/drivers/jdbc/SQLException.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/jdbc/SQLException.cxx b/connectivity/source/drivers/jdbc/SQLException.cxx index 44f02946a814..2c5e918208b9 100644 --- a/connectivity/source/drivers/jdbc/SQLException.cxx +++ b/connectivity/source/drivers/jdbc/SQLException.cxx @@ -2,9 +2,9 @@ * * $RCSfile: SQLException.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: oj $ $Date: 2001-05-31 08:29:15 $ + * last change: $Author: oj $ $Date: 2001-10-18 13:17:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -133,7 +133,7 @@ starsdbc::SQLException java_sql_SQLException_BASE::getNextException() const char * cSignature = "()Ljava/sql/Exception;"; char * cMethodName = "getNextException"; // Java-Call absetzen - jmethodID mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!"); + jmethodID mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature ); if( mID ){ out = t.pEnv->CallObjectMethod( object, mID); ThrowSQLException(t.pEnv,0); |