INTEGRATION: CWS dba18 (1.72.38); FILE MERGED

2004/10/14 12:10:22 fs 1.72.38.1: #i24021# delegate XWarningsSupplier functionality to result set, if possible
This commit is contained in:
Oliver Bolte
2004-11-17 13:42:24 +00:00
parent 5ce64e07cc
commit 77431c4e9f

View File

@@ -2,9 +2,9 @@
* *
* $RCSfile: RowSetBase.cxx,v $ * $RCSfile: RowSetBase.cxx,v $
* *
* $Revision: 1.72 $ * $Revision: 1.73 $
* *
* last change: $Author: hr $ $Date: 2004-08-02 15:00:45 $ * last change: $Author: obo $ $Date: 2004-11-17 14:42:24 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
@@ -1145,11 +1145,24 @@ sal_Bool SAL_CALL ORowSetBase::rowDeleted( ) throw(SQLException, RuntimeExcepti
// XWarningsSupplier // XWarningsSupplier
Any SAL_CALL ORowSetBase::getWarnings( ) throw(SQLException, RuntimeException) Any SAL_CALL ORowSetBase::getWarnings( ) throw(SQLException, RuntimeException)
{ {
::osl::MutexGuard aGuard( *m_pMutex );
checkCache();
Reference< XWarningsSupplier > xWarnings( m_pCache->m_xSet.get(), UNO_QUERY );
if ( xWarnings.is() )
return xWarnings->getWarnings();
return Any(); return Any();
} }
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
void SAL_CALL ORowSetBase::clearWarnings( ) throw(SQLException, RuntimeException) void SAL_CALL ORowSetBase::clearWarnings( ) throw(SQLException, RuntimeException)
{ {
::osl::MutexGuard aGuard( *m_pMutex );
checkCache();
Reference< XWarningsSupplier > xWarnings( m_pCache->m_xSet.get(), UNO_QUERY );
if ( xWarnings.is() )
xWarnings->clearWarnings();
} }
// ------------------------------------------------------------------------- // -------------------------------------------------------------------------
void ORowSetBase::firePropertyChange(const ORowSetRow& _rOldRow) void ORowSetBase::firePropertyChange(const ORowSetRow& _rOldRow)