summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/ado/AResultSet.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-03-26 12:57:47 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-03-26 12:57:47 +0000
commit199db14aa926f04b508933ac8b31fe3a7b2adbce (patch)
tree7f2f936282c795aa5b3387b6f365f9483c270dbf /connectivity/source/drivers/ado/AResultSet.cxx
parent98477a4ddf0668d2eac7c32d9a1d033b7d0143c5 (diff)
INTEGRATION: CWS mingwport03 (1.21.60); FILE MERGED
2006/11/07 12:31:01 vg 1.21.60.2: RESYNC: (1.21-1.22); FILE MERGED 2006/09/07 10:22:04 vg 1.21.60.1: #i53572# MinGW port
Diffstat (limited to 'connectivity/source/drivers/ado/AResultSet.cxx')
-rw-r--r--connectivity/source/drivers/ado/AResultSet.cxx15
1 files changed, 11 insertions, 4 deletions
diff --git a/connectivity/source/drivers/ado/AResultSet.cxx b/connectivity/source/drivers/ado/AResultSet.cxx
index b36d50bdd4..c1f961aaa4 100644
--- a/connectivity/source/drivers/ado/AResultSet.cxx
+++ b/connectivity/source/drivers/ado/AResultSet.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: AResultSet.cxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 02:15:05 $
+ * last change: $Author: vg $ $Date: 2007-03-26 13:57:47 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1010,6 +1010,7 @@ Sequence< sal_Int32 > SAL_CALL OResultSet::deleteRows( const Sequence< Any >& ro
}
//------------------------------------------------------------------------------
sal_Int32 OResultSet::getResultSetConcurrency() const
+ throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
sal_Int32 nValue=0;
LockTypeEnum eRet;
@@ -1029,6 +1030,7 @@ sal_Int32 OResultSet::getResultSetConcurrency() const
}
//------------------------------------------------------------------------------
sal_Int32 OResultSet::getResultSetType() const
+ throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
sal_Int32 nValue=0;
CursorTypeEnum eRet;
@@ -1053,11 +1055,13 @@ sal_Int32 OResultSet::getResultSetType() const
}
//------------------------------------------------------------------------------
sal_Int32 OResultSet::getFetchDirection() const
+ throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
return FetchDirection::FORWARD;
}
//------------------------------------------------------------------------------
sal_Int32 OResultSet::getFetchSize() const
+ throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
sal_Int32 nValue=-1;
m_pRecordSet->get_CacheSize(&nValue);
@@ -1065,17 +1069,20 @@ sal_Int32 OResultSet::getFetchSize() const
}
//------------------------------------------------------------------------------
::rtl::OUString OResultSet::getCursorName() const
+ throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
return ::rtl::OUString();
}
//------------------------------------------------------------------------------
void OResultSet::setFetchDirection(sal_Int32 /*_par0*/)
+ throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
::dbtools::throwFeatureNotImplementedException( "ResultSet::FetchDirection", *this );
}
//------------------------------------------------------------------------------
void OResultSet::setFetchSize(sal_Int32 _par0)
+ throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
m_pRecordSet->put_CacheSize(_par0);
}
@@ -1177,12 +1184,12 @@ void OResultSet::getFastPropertyValue(Any& rValue,sal_Int32 nHandle) const
}
}
// -----------------------------------------------------------------------------
-void SAL_CALL OResultSet::acquire() throw(::com::sun::star::uno::RuntimeException)
+void SAL_CALL OResultSet::acquire() throw()
{
OResultSet_BASE::acquire();
}
// -----------------------------------------------------------------------------
-void SAL_CALL OResultSet::release() throw(::com::sun::star::uno::RuntimeException)
+void SAL_CALL OResultSet::release() throw()
{
OResultSet_BASE::release();
}