diff options
author | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-08-22 12:54:23 +0100 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-08-23 10:32:20 +0100 |
commit | 33b011e6ff908f5b0a4eec43d89284b0cf631b21 (patch) | |
tree | 3f84d9f5d5a248fc671de5447f84aae06e02e26c /connectivity | |
parent | ab59b7176fcb82ffe16c9200169c2a897387c056 (diff) |
RefreshRow is unuspported. (firebird-sdbc)
Change-Id: Iec8e72a6236de83a1698e2d6e9dbcb609f0f858f
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/ResultSet.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/connectivity/source/drivers/firebird/ResultSet.cxx b/connectivity/source/drivers/firebird/ResultSet.cxx index 2c29b948d3f9..edd1836ded5d 100644 --- a/connectivity/source/drivers/firebird/ResultSet.cxx +++ b/connectivity/source/drivers/firebird/ResultSet.cxx @@ -630,12 +630,11 @@ Any SAL_CALL OResultSet::getWarnings( ) throw(SQLException, RuntimeException) return Any(); } -// ------------------------------------------------------------------------- -void SAL_CALL OResultSet::refreshRow( ) throw(SQLException, RuntimeException) +void SAL_CALL OResultSet::refreshRow() throw(SQLException, RuntimeException) { - MutexGuard aGuard(m_pConnection->getMutex()); - checkDisposed(OResultSet_BASE::rBHelper.bDisposed); - + ::dbtools::throwFunctionNotSupportedException("refreshRow not supported in firebird", + *this, + Any()); } // ------------------------------------------------------------------------- IPropertyArrayHelper* OResultSet::createArrayHelper( ) const |