diff options
Diffstat (limited to 'mysqlc/source/mysqlc_statement.cxx')
-rw-r--r-- | mysqlc/source/mysqlc_statement.cxx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mysqlc/source/mysqlc_statement.cxx b/mysqlc/source/mysqlc_statement.cxx index dfb18846bc43..e3184b711b9d 100644 --- a/mysqlc/source/mysqlc_statement.cxx +++ b/mysqlc/source/mysqlc_statement.cxx @@ -140,7 +140,6 @@ void SAL_CALL OCommonStatement::close() dispose(); } - void SAL_CALL OStatement::clearBatch() throw(SQLException, RuntimeException, std::exception) { @@ -148,7 +147,6 @@ void SAL_CALL OStatement::clearBatch() // if you support batches clear it here } - sal_Bool SAL_CALL OCommonStatement::execute(const OUString& sql) throw(SQLException, RuntimeException, std::exception) { @@ -166,7 +164,6 @@ sal_Bool SAL_CALL OCommonStatement::execute(const OUString& sql) return success; } - Reference< XResultSet > SAL_CALL OCommonStatement::executeQuery(const OUString& sql) throw(SQLException, RuntimeException, std::exception) { @@ -187,7 +184,6 @@ Reference< XResultSet > SAL_CALL OCommonStatement::executeQuery(const OUString& return xResultSet; } - Reference< XConnection > SAL_CALL OCommonStatement::getConnection() throw(SQLException, RuntimeException, std::exception) { @@ -199,7 +195,6 @@ Reference< XConnection > SAL_CALL OCommonStatement::getConnection() return ((Reference< XConnection >)m_pConnection); } - sal_Int32 SAL_CALL OCommonStatement::getUpdateCount() throw(SQLException, RuntimeException, std::exception) { @@ -207,7 +202,6 @@ sal_Int32 SAL_CALL OCommonStatement::getUpdateCount() return 0; } - Any SAL_CALL OStatement::queryInterface(const Type & rType) throw(RuntimeException, std::exception) { @@ -219,7 +213,6 @@ Any SAL_CALL OStatement::queryInterface(const Type & rType) return (aRet); } - void SAL_CALL OStatement::addBatch(const OUString& sql) throw(SQLException, RuntimeException, std::exception) { @@ -230,7 +223,6 @@ void SAL_CALL OStatement::addBatch(const OUString& sql) m_aBatchList.push_back(sql); } - Sequence< sal_Int32 > SAL_CALL OStatement::executeBatch() throw(SQLException, RuntimeException, std::exception) { @@ -242,7 +234,6 @@ Sequence< sal_Int32 > SAL_CALL OStatement::executeBatch() return aRet; } - sal_Int32 SAL_CALL OCommonStatement::executeUpdate(const OUString& sql) throw(SQLException, RuntimeException, std::exception) { @@ -260,7 +251,6 @@ sal_Int32 SAL_CALL OCommonStatement::executeUpdate(const OUString& sql) return affectedRows; } - Reference< XResultSet > SAL_CALL OCommonStatement::getResultSet() throw(SQLException, RuntimeException, std::exception) { @@ -279,7 +269,6 @@ Reference< XResultSet > SAL_CALL OCommonStatement::getResultSet() return xResultSet; } - sal_Bool SAL_CALL OCommonStatement::getMoreResults() throw(SQLException, RuntimeException, std::exception) { @@ -292,7 +281,6 @@ sal_Bool SAL_CALL OCommonStatement::getMoreResults() return (sal_False); } - Any SAL_CALL OCommonStatement::getWarnings() throw(SQLException, RuntimeException, std::exception) { @@ -303,7 +291,6 @@ Any SAL_CALL OCommonStatement::getWarnings() return makeAny(m_aLastWarning); } - void SAL_CALL OCommonStatement::clearWarnings() throw(SQLException, RuntimeException, std::exception) { @@ -314,7 +301,6 @@ void SAL_CALL OCommonStatement::clearWarnings() m_aLastWarning = SQLWarning(); } - ::cppu::IPropertyArrayHelper* OCommonStatement::createArrayHelper( ) const { OSL_TRACE("OCommonStatement::createArrayHelper"); @@ -337,14 +323,12 @@ void SAL_CALL OCommonStatement::clearWarnings() return new ::cppu::OPropertyArrayHelper(aProps); } - ::cppu::IPropertyArrayHelper & OCommonStatement::getInfoHelper() { OSL_TRACE("OCommonStatement::getInfoHelper"); return(*const_cast<OCommonStatement*>(this)->getArrayHelper()); } - sal_Bool OCommonStatement::convertFastPropertyValue( Any & /* rConvertedValue */, Any & /* rOldValue */, sal_Int32 /* nHandle */, const Any& /* rValue */) @@ -356,7 +340,6 @@ sal_Bool OCommonStatement::convertFastPropertyValue( return bConverted; } - void OCommonStatement::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& /* rValue */) throw (Exception, std::exception) { @@ -378,7 +361,6 @@ void OCommonStatement::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const } } - void OCommonStatement::getFastPropertyValue(Any& _rValue, sal_Int32 nHandle) const { OSL_TRACE("OCommonStatement::getFastPropertyValue"); @@ -427,7 +409,6 @@ void SAL_CALL OCommonStatement::acquire() OCommonStatement_IBase::acquire(); } - void SAL_CALL OCommonStatement::release() throw() { @@ -435,7 +416,6 @@ void SAL_CALL OCommonStatement::release() relase_ChildImpl(); } - void SAL_CALL OStatement::acquire() throw() { @@ -443,7 +423,6 @@ void SAL_CALL OStatement::acquire() OCommonStatement::acquire(); } - void SAL_CALL OStatement::release() throw() { @@ -451,7 +430,6 @@ void SAL_CALL OStatement::release() OCommonStatement::release(); } - Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL OCommonStatement::getPropertySetInfo() throw(RuntimeException, std::exception) { |