diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-25 15:39:47 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-25 16:56:17 +0100 |
commit | 9e965e9b15be7674a4b7b787370018fbd60e339e (patch) | |
tree | abfa4943c3e6a00d25af3c0e92275f1d9afd9d3e /connectivity/source/drivers/jdbc/CallableStatement.cxx | |
parent | 7c896697f29730476ea0fc4517d94c2c8e8b2074 (diff) |
coverity#706319 Uncaught exception
Change-Id: I7f390151c232d0a96d50b16c0c76aacea569653e
Diffstat (limited to 'connectivity/source/drivers/jdbc/CallableStatement.cxx')
-rw-r--r-- | connectivity/source/drivers/jdbc/CallableStatement.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/jdbc/CallableStatement.cxx b/connectivity/source/drivers/jdbc/CallableStatement.cxx index 6debd575cab2..d7ee0291221d 100644 --- a/connectivity/source/drivers/jdbc/CallableStatement.cxx +++ b/connectivity/source/drivers/jdbc/CallableStatement.cxx @@ -140,7 +140,7 @@ sal_Int32 SAL_CALL java_sql_CallableStatement::getInt( sal_Int32 columnIndex ) t SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); createStatement(t.pEnv); static jmethodID mID(NULL); - return callIntMethodWithIntArg_Throw("getInt",mID,columnIndex); + return callIntMethodWithIntArg_ThrowSQL("getInt",mID,columnIndex); } sal_Int64 SAL_CALL java_sql_CallableStatement::getLong( sal_Int32 columnIndex ) throw(css::sdbc::SQLException, RuntimeException, std::exception) |