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

coverity#706364 Uncaught exception

Change-Id: I75cd82d55d8bdf2f111cd0a91f056e1956ddad02
üst 287ad2ad
......@@ -769,9 +769,8 @@ SQLLEN* OPreparedStatement::getLengthBuf (sal_Int32 index)
// putParamData
// Puts parameter data from a previously bound input stream. The
// input stream was bound using SQL_LEN_DATA_AT_EXEC.
void OPreparedStatement::putParamData (sal_Int32 index) throw(SQLException)
void OPreparedStatement::putParamData (sal_Int32 index)
throw (SQLException, RuntimeException)
{
// Sanity check the parameter index
if ((index < 1) ||
......
......@@ -72,7 +72,8 @@ namespace connectivity
bool m_bPrepared;
void FreeParams();
void putParamData (sal_Int32 index) throw(::com::sun::star::sdbc::SQLException);
void putParamData (sal_Int32 index)
throw (css::sdbc::SQLException, css::uno::RuntimeException);
void setStream (sal_Int32 ParameterIndex,const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream>& x,
SQLLEN length,sal_Int32 SQLtype) throw(::com::sun::star::sdbc::SQLException);
SQLLEN* getLengthBuf (sal_Int32 index);
......
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