summaryrefslogtreecommitdiff
path: root/mysqlc/source/mysqlc_resultset.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'mysqlc/source/mysqlc_resultset.hxx')
-rw-r--r--mysqlc/source/mysqlc_resultset.hxx218
1 files changed, 93 insertions, 125 deletions
diff --git a/mysqlc/source/mysqlc_resultset.hxx b/mysqlc/source/mysqlc_resultset.hxx
index ee92fccb3dd0..5ed4f8c9d0d2 100644
--- a/mysqlc/source/mysqlc_resultset.hxx
+++ b/mysqlc/source/mysqlc_resultset.hxx
@@ -79,11 +79,9 @@ namespace connectivity
// OPropertySetHelper
::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE;
- sal_Bool SAL_CALL convertFastPropertyValue(Any & rConvertedValue, Any & rOldValue, sal_Int32 nHandle, const Any& rValue)
- throw (css::lang::IllegalArgumentException) SAL_OVERRIDE;
+ sal_Bool SAL_CALL convertFastPropertyValue(Any & rConvertedValue, Any & rOldValue, sal_Int32 nHandle, const Any& rValue) SAL_OVERRIDE;
- void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& rValue)
- throw (css::uno::Exception, std::exception) SAL_OVERRIDE;
+ void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const Any& rValue) SAL_OVERRIDE;
void SAL_CALL getFastPropertyValue(Any& rValue, sal_Int32 nHandle) const SAL_OVERRIDE;
@@ -91,15 +89,14 @@ namespace connectivity
virtual ~OResultSet();
public:
- virtual rtl::OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual rtl::OUString SAL_CALL getImplementationName() SAL_OVERRIDE;
virtual sal_Bool SAL_CALL supportsService(
- rtl::OUString const & ServiceName) throw (css::uno::RuntimeException, std::exception)
+ rtl::OUString const & ServiceName)
SAL_OVERRIDE;
virtual css::uno::Sequence<rtl::OUString> SAL_CALL
- getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception)
+ getSupportedServiceNames()
SAL_OVERRIDE;
OResultSet( OCommonStatement* pStmt, sql::ResultSet *result, rtl_TextEncoding _encoding );
@@ -108,160 +105,131 @@ namespace connectivity
void SAL_CALL disposing() SAL_OVERRIDE;
// XInterface
- Any SAL_CALL queryInterface(const css::uno::Type & rType)
- throw(RuntimeException, std::exception) SAL_OVERRIDE;
+ Any SAL_CALL queryInterface(const css::uno::Type & rType) SAL_OVERRIDE;
void SAL_CALL acquire() throw() SAL_OVERRIDE;
void SAL_CALL release() throw() SAL_OVERRIDE;
//XTypeProvider
- css::uno::Sequence< css::uno::Type > SAL_CALL getTypes()
- throw(RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() SAL_OVERRIDE;
// XPropertySet
- css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo()
- throw(RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() SAL_OVERRIDE;
// XResultSet
- sal_Bool SAL_CALL next() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL isBeforeFirst() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL isAfterLast() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL isFirst() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL isLast() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ sal_Bool SAL_CALL next() SAL_OVERRIDE;
+ sal_Bool SAL_CALL isBeforeFirst() SAL_OVERRIDE;
+ sal_Bool SAL_CALL isAfterLast() SAL_OVERRIDE;
+ sal_Bool SAL_CALL isFirst() SAL_OVERRIDE;
+ sal_Bool SAL_CALL isLast() SAL_OVERRIDE;
- void SAL_CALL beforeFirst() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL afterLast() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ void SAL_CALL beforeFirst() SAL_OVERRIDE;
+ void SAL_CALL afterLast() SAL_OVERRIDE;
- sal_Bool SAL_CALL first() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL last() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ sal_Bool SAL_CALL first() SAL_OVERRIDE;
+ sal_Bool SAL_CALL last() SAL_OVERRIDE;
- sal_Int32 SAL_CALL getRow() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ sal_Int32 SAL_CALL getRow() SAL_OVERRIDE;
- sal_Bool SAL_CALL absolute(sal_Int32 row) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL relative(sal_Int32 rows) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL previous() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ sal_Bool SAL_CALL absolute(sal_Int32 row) SAL_OVERRIDE;
+ sal_Bool SAL_CALL relative(sal_Int32 rows) SAL_OVERRIDE;
+ sal_Bool SAL_CALL previous() SAL_OVERRIDE;
- void SAL_CALL refreshRow() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ void SAL_CALL refreshRow() SAL_OVERRIDE;
- sal_Bool SAL_CALL rowUpdated() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL rowInserted() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL rowDeleted() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ sal_Bool SAL_CALL rowUpdated() SAL_OVERRIDE;
+ sal_Bool SAL_CALL rowInserted() SAL_OVERRIDE;
+ sal_Bool SAL_CALL rowDeleted() SAL_OVERRIDE;
- css::uno::Reference< css::uno::XInterface > SAL_CALL getStatement()
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::Reference< css::uno::XInterface > SAL_CALL getStatement() SAL_OVERRIDE;
// XRow
- sal_Bool SAL_CALL wasNull() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
-
- rtl::OUString SAL_CALL getString(sal_Int32 column) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
-
- sal_Bool SAL_CALL getBoolean(sal_Int32 column) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Int8 SAL_CALL getByte(sal_Int32 column) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Int16 SAL_CALL getShort(sal_Int32 column) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Int32 SAL_CALL getInt(sal_Int32 column) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Int64 SAL_CALL getLong(sal_Int32 column) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
-
- float SAL_CALL getFloat(sal_Int32 column) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- double SAL_CALL getDouble(sal_Int32 column) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
-
- css::uno::Sequence< sal_Int8 > SAL_CALL getBytes(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- css::util::Date SAL_CALL getDate(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- css::util::Time SAL_CALL getTime(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- css::util::DateTime SAL_CALL getTimestamp(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
-
- css::uno::Reference< css::io::XInputStream > SAL_CALL getBinaryStream(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- css::uno::Reference< css::io::XInputStream > SAL_CALL getCharacterStream(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
-
- Any SAL_CALL getObject(sal_Int32 column, const my_XNameAccessRef& typeMap)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
-
- css::uno::Reference< css::sdbc::XRef > SAL_CALL getRef(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- css::uno::Reference< css::sdbc::XBlob > SAL_CALL getBlob(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- css::uno::Reference< css::sdbc::XClob > SAL_CALL getClob(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- css::uno::Reference< css::sdbc::XArray > SAL_CALL getArray(sal_Int32 column)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ sal_Bool SAL_CALL wasNull() SAL_OVERRIDE;
+
+ rtl::OUString SAL_CALL getString(sal_Int32 column) SAL_OVERRIDE;
+
+ sal_Bool SAL_CALL getBoolean(sal_Int32 column) SAL_OVERRIDE;
+ sal_Int8 SAL_CALL getByte(sal_Int32 column) SAL_OVERRIDE;
+ sal_Int16 SAL_CALL getShort(sal_Int32 column) SAL_OVERRIDE;
+ sal_Int32 SAL_CALL getInt(sal_Int32 column) SAL_OVERRIDE;
+ sal_Int64 SAL_CALL getLong(sal_Int32 column) SAL_OVERRIDE;
+
+ float SAL_CALL getFloat(sal_Int32 column) SAL_OVERRIDE;
+ double SAL_CALL getDouble(sal_Int32 column) SAL_OVERRIDE;
+
+ css::uno::Sequence< sal_Int8 > SAL_CALL getBytes(sal_Int32 column) SAL_OVERRIDE;
+ css::util::Date SAL_CALL getDate(sal_Int32 column) SAL_OVERRIDE;
+ css::util::Time SAL_CALL getTime(sal_Int32 column) SAL_OVERRIDE;
+ css::util::DateTime SAL_CALL getTimestamp(sal_Int32 column) SAL_OVERRIDE;
+
+ css::uno::Reference< css::io::XInputStream > SAL_CALL getBinaryStream(sal_Int32 column) SAL_OVERRIDE;
+ css::uno::Reference< css::io::XInputStream > SAL_CALL getCharacterStream(sal_Int32 column) SAL_OVERRIDE;
+
+ Any SAL_CALL getObject(sal_Int32 column, const my_XNameAccessRef& typeMap) SAL_OVERRIDE;
+
+ css::uno::Reference< css::sdbc::XRef > SAL_CALL getRef(sal_Int32 column) SAL_OVERRIDE;
+ css::uno::Reference< css::sdbc::XBlob > SAL_CALL getBlob(sal_Int32 column) SAL_OVERRIDE;
+ css::uno::Reference< css::sdbc::XClob > SAL_CALL getClob(sal_Int32 column) SAL_OVERRIDE;
+ css::uno::Reference< css::sdbc::XArray > SAL_CALL getArray(sal_Int32 column) SAL_OVERRIDE;
// XResultSetMetaDataSupplier
- css::uno::Reference< css::sdbc::XResultSetMetaData > SAL_CALL getMetaData()
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::Reference< css::sdbc::XResultSetMetaData > SAL_CALL getMetaData() SAL_OVERRIDE;
// XCancellable
- void SAL_CALL cancel() throw(RuntimeException, std::exception) SAL_OVERRIDE;
+ void SAL_CALL cancel() SAL_OVERRIDE;
// XCloseable
- void SAL_CALL close() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ void SAL_CALL close() SAL_OVERRIDE;
// XWarningsSupplier
- Any SAL_CALL getWarnings() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ Any SAL_CALL getWarnings() SAL_OVERRIDE;
- void SAL_CALL clearWarnings() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ void SAL_CALL clearWarnings() SAL_OVERRIDE;
// XResultSetUpdate
- void SAL_CALL insertRow() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateRow() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL deleteRow() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL cancelRowUpdates() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL moveToInsertRow() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL moveToCurrentRow() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ void SAL_CALL insertRow() SAL_OVERRIDE;
+ void SAL_CALL updateRow() SAL_OVERRIDE;
+ void SAL_CALL deleteRow() SAL_OVERRIDE;
+ void SAL_CALL cancelRowUpdates() SAL_OVERRIDE;
+ void SAL_CALL moveToInsertRow() SAL_OVERRIDE;
+ void SAL_CALL moveToCurrentRow() SAL_OVERRIDE;
// XRowUpdate
- void SAL_CALL updateNull(sal_Int32 column) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateBoolean(sal_Int32 column, sal_Bool x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateByte(sal_Int32 column, sal_Int8 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateShort(sal_Int32 column, sal_Int16 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateInt(sal_Int32 column, sal_Int32 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateLong(sal_Int32 column, sal_Int64 x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateFloat(sal_Int32 column, float x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateDouble(sal_Int32 column, double x) throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateString(sal_Int32 column, const rtl::OUString& x)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateBytes(sal_Int32 column, const css::uno::Sequence< sal_Int8 >& x)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateDate(sal_Int32 column, const css::util::Date& x)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateTime(sal_Int32 column, const css::util::Time& x)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateTimestamp(sal_Int32 column, const css::util::DateTime& x)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateBinaryStream(sal_Int32 column, const css::uno::Reference< css::io::XInputStream >& x, sal_Int32 length)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateCharacterStream(sal_Int32 column, const css::uno::Reference< css::io::XInputStream >& x, sal_Int32 length)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateObject(sal_Int32 column, const Any& x)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- void SAL_CALL updateNumericObject(sal_Int32 column, const Any& x, sal_Int32 scale)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ void SAL_CALL updateNull(sal_Int32 column) SAL_OVERRIDE;
+ void SAL_CALL updateBoolean(sal_Int32 column, sal_Bool x) SAL_OVERRIDE;
+ void SAL_CALL updateByte(sal_Int32 column, sal_Int8 x) SAL_OVERRIDE;
+ void SAL_CALL updateShort(sal_Int32 column, sal_Int16 x) SAL_OVERRIDE;
+ void SAL_CALL updateInt(sal_Int32 column, sal_Int32 x) SAL_OVERRIDE;
+ void SAL_CALL updateLong(sal_Int32 column, sal_Int64 x) SAL_OVERRIDE;
+ void SAL_CALL updateFloat(sal_Int32 column, float x) SAL_OVERRIDE;
+ void SAL_CALL updateDouble(sal_Int32 column, double x) SAL_OVERRIDE;
+ void SAL_CALL updateString(sal_Int32 column, const rtl::OUString& x) SAL_OVERRIDE;
+ void SAL_CALL updateBytes(sal_Int32 column, const css::uno::Sequence< sal_Int8 >& x) SAL_OVERRIDE;
+ void SAL_CALL updateDate(sal_Int32 column, const css::util::Date& x) SAL_OVERRIDE;
+ void SAL_CALL updateTime(sal_Int32 column, const css::util::Time& x) SAL_OVERRIDE;
+ void SAL_CALL updateTimestamp(sal_Int32 column, const css::util::DateTime& x) SAL_OVERRIDE;
+ void SAL_CALL updateBinaryStream(sal_Int32 column, const css::uno::Reference< css::io::XInputStream >& x, sal_Int32 length) SAL_OVERRIDE;
+ void SAL_CALL updateCharacterStream(sal_Int32 column, const css::uno::Reference< css::io::XInputStream >& x, sal_Int32 length) SAL_OVERRIDE;
+ void SAL_CALL updateObject(sal_Int32 column, const Any& x) SAL_OVERRIDE;
+ void SAL_CALL updateNumericObject(sal_Int32 column, const Any& x, sal_Int32 scale) SAL_OVERRIDE;
// XColumnLocate
- sal_Int32 SAL_CALL findColumn(const rtl::OUString& columnName)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ sal_Int32 SAL_CALL findColumn(const rtl::OUString& columnName) SAL_OVERRIDE;
// XRowLocate
- Any SAL_CALL getBookmark() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
-
- sal_Bool SAL_CALL moveToBookmark(const Any& bookmark)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL moveRelativeToBookmark(const Any& bookmark, sal_Int32 rows)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Int32 SAL_CALL compareBookmarks(const Any& first, const Any& second)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Bool SAL_CALL hasOrderedBookmarks() throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
- sal_Int32 SAL_CALL hashBookmark(const Any& bookmark)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ Any SAL_CALL getBookmark() SAL_OVERRIDE;
+
+ sal_Bool SAL_CALL moveToBookmark(const Any& bookmark) SAL_OVERRIDE;
+ sal_Bool SAL_CALL moveRelativeToBookmark(const Any& bookmark, sal_Int32 rows) SAL_OVERRIDE;
+ sal_Int32 SAL_CALL compareBookmarks(const Any& first, const Any& second) SAL_OVERRIDE;
+ sal_Bool SAL_CALL hasOrderedBookmarks() SAL_OVERRIDE;
+ sal_Int32 SAL_CALL hashBookmark(const Any& bookmark) SAL_OVERRIDE;
// XDeleteRows
- css::uno::Sequence< sal_Int32 > SAL_CALL deleteRows(const css::uno::Sequence< Any >& rows)
- throw(SQLException, RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::Sequence< sal_Int32 > SAL_CALL deleteRows(const css::uno::Sequence< Any >& rows) SAL_OVERRIDE;
- void checkColumnIndex(sal_Int32 index) throw(SQLException, RuntimeException);
+ /// @throws SQLException
+ /// @throws RuntimeException
+ void checkColumnIndex(sal_Int32 index);
private:
using ::cppu::OPropertySetHelper::getFastPropertyValue;