Kaydet (Commit) 287ad2ad authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#706308 Uncaught exception

Change-Id: I852e701bd62929c1a7303b86286b8cbe66cdfc1f
üst 04559833
......@@ -208,7 +208,8 @@ sal_Int32 SAL_CALL OResultSet::findColumn( const OUString& columnName ) throw(SQ
return 0; // Never reached
}
const ORowSetValue& OResultSet::getValue(sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException)
const ORowSetValue& OResultSet::getValue(sal_Int32 columnIndex)
throw (css::sdbc::SQLException, css::uno::RuntimeException)
{
::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(OResultSet_BASE::rBHelper.bDisposed);
......
......@@ -148,7 +148,8 @@ namespace connectivity
inline bool isCount() const { return m_bIsCount; }
void checkIndex(sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException);
const ORowSetValue& getValue(sal_Int32 columnIndex ) throw(::com::sun::star::sdbc::SQLException);
const ORowSetValue& getValue(sal_Int32 columnIndex)
throw (css::sdbc::SQLException, css::uno::RuntimeException);
void updateValue(sal_Int32 columnIndex,const ORowSetValue& x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
// clear insert row
void clearInsertRow();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment