User: vg Date: 2007/03/26 06:57:49 Modified: dba/connectivity/source/drivers/ado/AResultSet.cxx
Log: 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 File Changes: Directory: /dba/connectivity/source/drivers/ado/ ================================================ File [changed]: AResultSet.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/ado/AResultSet.cxx?r1=1.22&r2=1.23 Delta lines: +9 -2 ------------------- --- AResultSet.cxx 17 Sep 2006 02:15:05 -0000 1.22 +++ AResultSet.cxx 26 Mar 2007 13:57:47 -0000 1.23 @@ -1010,6 +1010,7 @@ } //------------------------------------------------------------------------------ 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::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::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 @@ } //------------------------------------------------------------------------------ ::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 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(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
