2010-10-12 15:59:03 +02:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 23:16:46 +00:00
/*************************************************************************
*
2008-04-10 11:26:07 +00:00
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER .
2000-09-18 23:16:46 +00:00
*
2010-02-12 15:01:35 +01:00
* Copyright 2000 , 2010 Oracle and / or its affiliates .
2000-09-18 23:16:46 +00:00
*
2008-04-10 11:26:07 +00:00
* OpenOffice . org - a multi - platform office productivity suite
2000-09-18 23:16:46 +00:00
*
2008-04-10 11:26:07 +00:00
* This file is part of OpenOffice . org .
2000-09-18 23:16:46 +00:00
*
2008-04-10 11:26:07 +00:00
* OpenOffice . org is free software : you can redistribute it and / or modify
* it under the terms of the GNU Lesser General Public License version 3
* only , as published by the Free Software Foundation .
2000-09-18 23:16:46 +00:00
*
2008-04-10 11:26:07 +00:00
* OpenOffice . org is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU Lesser General Public License version 3 for more details
* ( a copy is included in the LICENSE file that accompanied this code ) .
2000-09-18 23:16:46 +00:00
*
2008-04-10 11:26:07 +00:00
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice . org . If not , see
* < http : //www.openoffice.org/license.html>
* for a copy of the LGPLv3 License .
2000-09-18 23:16:46 +00:00
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2006-09-17 05:32:17 +00:00
2009-11-27 10:17:16 +01:00
2000-09-18 23:16:46 +00:00
# include "RowSetBase.hxx"
# include "CRowSetDataColumn.hxx"
# include <connectivity/sdbcx/VCollection.hxx>
# include "RowSetCache.hxx"
2000-10-25 06:32:52 +00:00
# include "dbastrings.hrc"
2009-11-27 10:17:16 +01:00
# include "core_resource.hrc"
2000-09-18 23:16:46 +00:00
# include <com/sun/star/lang/DisposedException.hpp>
2000-10-25 06:32:52 +00:00
# include <com/sun/star/beans/PropertyAttribute.hpp>
2001-01-22 06:38:24 +00:00
# include <com/sun/star/sdbcx/CompareBookmark.hpp>
2001-04-05 06:51:27 +00:00
# include <com/sun/star/sdbc/ResultSetConcurrency.hpp>
2000-11-22 13:58:32 +00:00
# include <com/sun/star/lang/Locale.hpp>
# include <com/sun/star/util/NumberFormat.hpp>
2000-10-11 10:21:40 +00:00
# include <comphelper/sequence.hxx>
2001-03-15 07:29:16 +00:00
# include <comphelper/extract.hxx>
2000-10-11 10:21:40 +00:00
# include <comphelper/seqstream.hxx>
2000-10-25 06:32:52 +00:00
# include <connectivity/dbexception.hxx>
2006-02-06 15:54:07 +00:00
# include <osl/thread.h>
2004-08-02 14:00:45 +00:00
# include <tools/debug.hxx>
2009-04-23 10:42:05 +00:00
# include <rtl/logfile.hxx>
2004-08-02 14:00:45 +00:00
2000-09-18 23:16:46 +00:00
using namespace dbaccess ;
using namespace connectivity ;
2000-11-29 09:23:32 +00:00
using namespace connectivity : : sdbcx ;
2000-10-05 08:37:27 +00:00
using namespace comphelper ;
2000-10-25 06:32:52 +00:00
using namespace dbtools ;
2000-09-18 23:16:46 +00:00
using namespace : : com : : sun : : star : : uno ;
using namespace : : com : : sun : : star : : beans ;
using namespace : : com : : sun : : star : : sdbc ;
using namespace : : com : : sun : : star : : sdb ;
using namespace : : com : : sun : : star : : sdbcx ;
using namespace : : com : : sun : : star : : container ;
using namespace : : com : : sun : : star : : lang ;
2000-11-22 13:58:32 +00:00
using namespace : : com : : sun : : star : : util ;
2000-09-18 23:16:46 +00:00
using namespace : : cppu ;
using namespace : : osl ;
2001-01-24 10:02:14 +00:00
namespace dbaccess
{
// =========================================================================
// = OEmptyCollection
// =========================================================================
2000-09-18 23:16:46 +00:00
class OEmptyCollection : public sdbcx : : OCollection
{
protected :
2001-10-12 11:02:56 +00:00
virtual void impl_refresh ( ) throw ( RuntimeException ) ;
2005-03-10 15:31:23 +00:00
virtual connectivity : : sdbcx : : ObjectType createObject ( const : : rtl : : OUString & _rName ) ;
2000-09-18 23:16:46 +00:00
public :
OEmptyCollection ( : : cppu : : OWeakObject & _rParent , : : osl : : Mutex & _rMutex ) : OCollection ( _rParent , sal_True , _rMutex , : : std : : vector < : : rtl : : OUString > ( ) ) { }
} ;
2010-10-12 22:40:56 +02:00
2001-10-12 11:02:56 +00:00
void OEmptyCollection : : impl_refresh ( ) throw ( RuntimeException )
{
}
2010-10-12 22:40:56 +02:00
2006-06-20 01:36:00 +00:00
connectivity : : sdbcx : : ObjectType OEmptyCollection : : createObject ( const : : rtl : : OUString & /*_rName*/ )
2001-10-12 11:02:56 +00:00
{
2005-03-10 15:31:23 +00:00
return connectivity : : sdbcx : : ObjectType ( ) ;
2001-10-12 11:02:56 +00:00
}
2001-01-24 10:02:14 +00:00
// =========================================================================
// = ORowSetBase
// =========================================================================
2005-09-23 11:03:10 +00:00
DBG_NAME ( ORowSetBase )
2010-10-12 22:40:56 +02:00
2007-11-21 14:32:31 +00:00
ORowSetBase : : ORowSetBase ( const : : comphelper : : ComponentContext & _rContext , : : cppu : : OBroadcastHelper & _rBHelper , : : osl : : Mutex * _pMutex )
: OPropertyStateContainer ( _rBHelper )
, m_pMutex ( _pMutex )
, m_pCache ( NULL )
, m_pColumns ( NULL )
, m_rBHelper ( _rBHelper )
, m_pEmptyCollection ( NULL )
, m_aContext ( _rContext )
, m_aErrors ( _rContext )
, m_nLastColumnIndex ( - 1 )
, m_nDeletedPosition ( - 1 )
, m_nResultSetType ( ResultSetType : : FORWARD_ONLY )
, m_nResultSetConcurrency ( ResultSetConcurrency : : READ_ONLY )
, m_bClone ( sal_False )
, m_bIgnoreResult ( sal_False )
, m_bBeforeFirst ( sal_True ) // changed from sal_False
, m_bAfterLast ( sal_False )
2011-02-23 11:36:11 +01:00
, m_bIsInsertRow ( sal_False )
2000-09-18 23:16:46 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::ORowSetBase " ) ;
2005-09-23 11:03:10 +00:00
DBG_CTOR ( ORowSetBase , NULL ) ;
2000-09-18 23:16:46 +00:00
sal_Int32 nRBT = PropertyAttribute : : READONLY | PropertyAttribute : : BOUND | PropertyAttribute : : TRANSIENT ;
2006-01-25 14:10:18 +00:00
sal_Int32 nInitialRowCountValue = 0 ;
sal_Bool bInitialRowCountFinalValue ( sal_False ) ;
registerPropertyNoMember ( PROPERTY_ROWCOUNT , PROPERTY_ID_ROWCOUNT , nRBT , : : getCppuType ( & nInitialRowCountValue ) , & nInitialRowCountValue ) ;
registerPropertyNoMember ( PROPERTY_ISROWCOUNTFINAL , PROPERTY_ID_ISROWCOUNTFINAL , nRBT , : : getBooleanCppuType ( ) , & bInitialRowCountFinalValue ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2001-04-20 10:44:05 +00:00
ORowSetBase : : ~ ORowSetBase ( )
{
if ( m_pColumns )
{
2001-08-13 07:45:02 +00:00
TDataColumns ( ) . swap ( m_aDataColumns ) ;
2004-08-02 14:00:45 +00:00
m_pColumns - > acquire ( ) ;
m_pColumns - > disposing ( ) ;
2001-04-20 10:44:05 +00:00
delete m_pColumns ;
m_pColumns = NULL ;
}
2002-01-18 17:24:07 +00:00
if ( m_pEmptyCollection )
delete m_pEmptyCollection ;
2005-09-23 11:03:10 +00:00
DBG_DTOR ( ORowSetBase , NULL ) ;
2001-04-20 10:44:05 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
// com::sun::star::lang::XTypeProvider
Sequence < Type > ORowSetBase : : getTypes ( ) throw ( RuntimeException )
{
2009-04-23 10:42:05 +00:00
//RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "dbaccess", "Ocke.Janssen@sun.com", "ORowSetBase::getTypes" );
2004-08-02 14:00:45 +00:00
return : : comphelper : : concatSequences ( ORowSetBase_BASE : : getTypes ( ) , OPropertyStateContainer : : getTypes ( ) ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
// com::sun::star::uno::XInterface
Any ORowSetBase : : queryInterface ( const Type & rType ) throw ( RuntimeException )
{
2009-04-23 10:42:05 +00:00
//RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "dbaccess", "Ocke.Janssen@sun.com", "ORowSetBase::queryInterface" );
2001-08-24 05:40:35 +00:00
Any aRet = ORowSetBase_BASE : : queryInterface ( rType ) ;
2000-09-18 23:16:46 +00:00
if ( ! aRet . hasValue ( ) )
2004-08-02 14:00:45 +00:00
aRet = OPropertyStateContainer : : queryInterface ( rType ) ;
2000-09-18 23:16:46 +00:00
return aRet ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
void SAL_CALL ORowSetBase : : getFastPropertyValue ( Any & rValue , sal_Int32 nHandle ) const
{
2009-04-23 10:42:05 +00:00
//RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "dbaccess", "Ocke.Janssen@sun.com", "ORowSetBase::getFastPropertyValue" );
2000-09-18 23:16:46 +00:00
if ( m_pCache )
{
switch ( nHandle )
{
case PROPERTY_ID_ROWCOUNT :
2006-01-25 14:10:18 +00:00
rValue < < = impl_getRowCount ( ) ;
2000-09-18 23:16:46 +00:00
break ;
case PROPERTY_ID_ISROWCOUNTFINAL :
rValue . setValue ( & m_pCache - > m_bRowCountFinal , : : getCppuBooleanType ( ) ) ;
break ;
default :
2004-08-02 14:00:45 +00:00
OPropertyStateContainer : : getFastPropertyValue ( rValue , nHandle ) ;
2000-09-18 23:16:46 +00:00
} ;
}
else
2004-08-02 14:00:45 +00:00
OPropertyStateContainer : : getFastPropertyValue ( rValue , nHandle ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
// OComponentHelper
void SAL_CALL ORowSetBase : : disposing ( void )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::disposing " ) ;
2001-11-15 09:42:42 +00:00
MutexGuard aGuard ( * m_pMutex ) ;
2000-09-18 23:16:46 +00:00
2003-03-19 16:57:12 +00:00
if ( m_pColumns )
2001-08-13 07:45:02 +00:00
{
TDataColumns ( ) . swap ( m_aDataColumns ) ;
2000-09-18 23:16:46 +00:00
m_pColumns - > disposing ( ) ;
2001-08-13 07:45:02 +00:00
}
2003-03-19 16:57:12 +00:00
if ( m_pCache )
CWS-TOOLING: integrate CWS dba32e
2009-08-10 13:16:25 +0200 fs r274805 : #i84390# typo corrected
2009-08-10 13:04:28 +0200 fs r274804 : #i103741# properly terminate the last token in a string with a 0 byte
2009-07-24 08:54:05 +0200 msc r274286 : #103219# changed long name
2009-07-24 08:42:28 +0200 msc r274285 : #i79649# changed behaviour of the wizard
2009-07-22 14:17:49 +0200 oj r274238 : GrabFocus
2009-07-22 13:38:01 +0200 oj r274232 : #i102934# mixed up
2009-07-22 13:37:16 +0200 oj r274231 : #i102934# mixed up
2009-07-21 12:30:36 +0200 oj r274176 : crash when using distinct
2009-07-21 10:03:44 +0200 oj r274163 : set last char to 0
2009-07-21 09:31:22 +0200 oj r274161 : mediatype corrected
2009-07-20 11:45:33 +0200 fs r274118 : typo in formatting string
2009-07-20 11:40:39 +0200 fs r274117 : removed unused include
2009-07-20 11:40:01 +0200 fs r274116 : class name corrected
2009-07-16 13:41:45 +0200 oj r274046 : i101587 wrong check for embeddeddatabase url in confguration, have to check path
2009-07-16 13:12:05 +0200 tbo r274044 : #i103219# adjust declarion to new hid.lst
2009-07-16 12:43:48 +0200 oj r274041 : #i102497# check also fot longvarchar
2009-07-16 12:15:41 +0200 oj r274039 : #i103030# handle type description and exceptions as well
2009-07-16 11:14:26 +0200 fs r274035 : let SVN ignore output paths
2009-07-16 09:23:43 +0200 fs r274030 : TransforFormComponentProperties: no need to check for attribute equality
2009-07-10 14:16:23 +0200 oj r273892 : CWS-TOOLING: rebase CWS dba32e to trunk@273858 (milestone: DEV300:m52)
2009-07-01 21:41:50 +0200 fs r273614 : #i10000#
2009-07-01 15:01:10 +0200 fs r273589 : Input required doesn't make sense at all in XML form documents
2009-07-01 12:10:31 +0200 fs r273562 : updated
2009-07-01 11:46:12 +0200 fs r273560 : #i103219# add about 100 missing long names
2009-07-01 10:11:41 +0200 fs r273551 : moved from socket/port usage to pipe/name usage, which is more common nowadays
2009-07-01 09:50:03 +0200 fs r273549 : removed obsolete (empty) folder
2009-07-01 09:47:35 +0200 fs r273548 : copied the code for the Accessibility Workbench herein, formerly located in the old CVS repository, at gsl/awb
2009-06-30 10:07:47 +0200 fs r273493 : merging latest changes from CWS dba32d
2009-06-29 20:46:31 +0200 fs r273482 : #i103138# Rectangle conversions
2009-06-29 10:01:13 +0200 fs r273453 : #i103138#
refactored the code for positioning/zooming the control
Basically, we now allow adjustControlGeometry_throw (formerly known as positionControl_throw and setControlZoom) to
take an additional ViewTransformation parameter, describing the transformation to obtain the actual
control position/size. Consequently, positionControl itself also allows for a ViewTransformation parameter.
This has become necessary since during painting, the device which we created our control for might not necessarily
have a proper MapMode set. In this case, if we would use this map mode for calculating the control's position/size,
this would lead to wrong results.
Note that this problem was introduced by the fix for #i101398#: During the fix, we postponed the control creation
to a later time (when it is really needed). At this later time, the MapMode at the device is broken, at the earlier
time where we formerly crearted the control (createPrimitive2DSequence), it is not yet broken.
Whether or not the MapMode is defined as "broken" might depend on one's point of view, however ...
I consider it broken, since:
- we need the map mode to obtain the proper zoom level, which is to be forwarded to the control
- there are scenarios where the MapMode is *not* set to MAP_PIXEL (in those scenarios, everything works
fine), and there are scenarios where it *is* set to MAP_PIXEL (in those the bug 103138 appears).
It somehow feels wrong that one cannot rely on the device's map mode this way, but on the other hand
one has no possibility to obtain the current zoom by other means.
Note that one issue (still to be submitted) is left: In the page pane of a Draw/Impress document, controls
have a wrong text size. This is because in this pane, the above-mentioned "broken" map mode is used,
which means the controls have a zoom of "1:1" set, which is wrong here.
2009-06-29 09:52:13 +0200 fs r273452 : during #i103138#: belongsToDevice is unused nowadays
2009-06-24 12:40:06 +0200 fs r273329 : #i102888# #i102899#
2009-06-24 12:10:29 +0200 oj r273327 : #i103030# some code changes
2009-06-24 09:44:14 +0200 oj r273311 : #i103030# some code changes
2009-06-24 09:24:42 +0200 oj r273309 : #i103030# add log
2009-06-24 09:03:29 +0200 fs r273308 : if a col's table name is schema.table, properly quote all parts
2009-06-24 08:56:06 +0200 oj r273307 : #i102691# changed string
2009-06-23 13:31:43 +0200 oj r273280 : #i102479# fix date, time and datetime
2009-06-23 12:51:28 +0200 oj r273277 : #i103020# clear old expression when updating to avoid dead pointers in treelist userdata
2009-06-23 12:17:16 +0200 oj r273275 : #i103030# add LogBridge
2009-06-23 11:53:10 +0200 oj r273272 : shawdowed var resolved
2009-06-23 11:48:49 +0200 oj r273270 : #i103030# add :log to uno env if var UNO_ENV_LOG is set
2009-06-23 11:47:47 +0200 oj r273269 : #i103030# add LogBridge
2009-06-23 11:47:11 +0200 oj r273268 : #i103030# add LogBridge
2009-06-23 08:05:08 +0200 oj r273253 : #i102934# add key for collapsing
2009-06-22 13:21:33 +0200 fs r273225 : merging latest changes from CWS dba32d
2009-06-22 13:15:22 +0200 fs r273221 : why restrict to 12 entries?
2009-06-22 08:12:21 +0200 oj r273196 : #i102655# choosen > chosen typo fixed
2009-06-22 08:08:04 +0200 oj r273195 : #i102657# typo fix
2009-06-22 08:06:28 +0200 oj r273194 : #i102934# expanding and collasping of section
2009-06-22 08:05:52 +0200 oj r273193 : #i102930# set focus in treelistbox
2009-06-22 08:04:56 +0200 oj r273192 : #i102929# enable tabstop
2009-06-19 13:18:26 +0200 oj r273157 : remove unused param
2009-06-19 10:07:05 +0200 oj r273149 : CWS-TOOLING: rebase CWS dba32e to trunk@272827 (milestone: DEV300:m50)
2009-06-19 07:32:40 +0200 oj r273146 : merge from dba32d to dba32e
2009-06-19 07:22:56 +0200 oj r273145 : merge from dba32d to dba32e
2009-06-19 07:22:33 +0200 oj r273144 : merge from dba32d to dba32e
2009-06-18 14:09:34 +0200 fs r273116 : merging the latest changes from CWS dba32d (up to revision 273108) herein, which effectively is a rebase to DEV300.m50
2009-06-18 08:50:35 +0200 oj r273098 : #i102894# fix for new line in text
2009-06-18 08:28:48 +0200 oj r273097 : #i102892# check any
2009-06-18 08:21:34 +0200 oj r273096 : check if error is valid
2009-06-16 13:49:28 +0200 fs r273019 : why make a drop down control by default? The form control factory in SVX does this better those days ...
2009-06-10 09:53:20 +0200 oj r272797 : add lic text
2009-06-10 09:48:55 +0200 oj r272796 : test added for i101618
2009-06-09 14:57:39 +0200 oj r272771 : #i101618# access database document only when script container is needed
2009-06-09 12:42:25 +0200 oj r272765 : #i102497# check type property
2009-06-09 12:32:49 +0200 oj r272764 : adjust test cases
2009-06-09 12:31:58 +0200 oj r272763 : adjust test cases
2009-06-09 12:31:22 +0200 oj r272762 : adjust test cases
2009-06-09 11:35:42 +0200 oj r272761 : check if error is valid
2009-06-09 11:29:42 +0200 oj r272760 : #i102497# longvarchar was missing
2009-06-08 14:52:49 +0200 fs r272733 : #i102564# when setting a new field, also set m_nFieldType
2009-06-08 13:51:20 +0200 oj r272730 : add tests
2009-06-05 14:38:01 +0200 oj r272686 : add dep
2009-06-05 14:35:00 +0200 oj r272684 : add new tests
2009-06-05 13:41:18 +0200 oj r272681 : code clean ups
2009-06-05 12:40:51 +0200 oj r272678 : code cleanup
2009-06-05 12:02:57 +0200 oj r272677 : code cleanup
2009-06-05 10:42:38 +0200 oj r272670 : #i49320# impl export of single rows and as RTF and HTML
2009-06-03 14:30:37 +0200 oj r272576 : #i79649# check if file matches filter wildcard
2009-06-03 13:41:57 +0200 oj r272560 : #i102470# impl not b like 'c'
2009-08-26 10:09:17 +00:00
{
2003-03-19 16:57:12 +00:00
m_pCache - > deregisterOldRow ( m_aOldRow ) ;
CWS-TOOLING: integrate CWS dba32e
2009-08-10 13:16:25 +0200 fs r274805 : #i84390# typo corrected
2009-08-10 13:04:28 +0200 fs r274804 : #i103741# properly terminate the last token in a string with a 0 byte
2009-07-24 08:54:05 +0200 msc r274286 : #103219# changed long name
2009-07-24 08:42:28 +0200 msc r274285 : #i79649# changed behaviour of the wizard
2009-07-22 14:17:49 +0200 oj r274238 : GrabFocus
2009-07-22 13:38:01 +0200 oj r274232 : #i102934# mixed up
2009-07-22 13:37:16 +0200 oj r274231 : #i102934# mixed up
2009-07-21 12:30:36 +0200 oj r274176 : crash when using distinct
2009-07-21 10:03:44 +0200 oj r274163 : set last char to 0
2009-07-21 09:31:22 +0200 oj r274161 : mediatype corrected
2009-07-20 11:45:33 +0200 fs r274118 : typo in formatting string
2009-07-20 11:40:39 +0200 fs r274117 : removed unused include
2009-07-20 11:40:01 +0200 fs r274116 : class name corrected
2009-07-16 13:41:45 +0200 oj r274046 : i101587 wrong check for embeddeddatabase url in confguration, have to check path
2009-07-16 13:12:05 +0200 tbo r274044 : #i103219# adjust declarion to new hid.lst
2009-07-16 12:43:48 +0200 oj r274041 : #i102497# check also fot longvarchar
2009-07-16 12:15:41 +0200 oj r274039 : #i103030# handle type description and exceptions as well
2009-07-16 11:14:26 +0200 fs r274035 : let SVN ignore output paths
2009-07-16 09:23:43 +0200 fs r274030 : TransforFormComponentProperties: no need to check for attribute equality
2009-07-10 14:16:23 +0200 oj r273892 : CWS-TOOLING: rebase CWS dba32e to trunk@273858 (milestone: DEV300:m52)
2009-07-01 21:41:50 +0200 fs r273614 : #i10000#
2009-07-01 15:01:10 +0200 fs r273589 : Input required doesn't make sense at all in XML form documents
2009-07-01 12:10:31 +0200 fs r273562 : updated
2009-07-01 11:46:12 +0200 fs r273560 : #i103219# add about 100 missing long names
2009-07-01 10:11:41 +0200 fs r273551 : moved from socket/port usage to pipe/name usage, which is more common nowadays
2009-07-01 09:50:03 +0200 fs r273549 : removed obsolete (empty) folder
2009-07-01 09:47:35 +0200 fs r273548 : copied the code for the Accessibility Workbench herein, formerly located in the old CVS repository, at gsl/awb
2009-06-30 10:07:47 +0200 fs r273493 : merging latest changes from CWS dba32d
2009-06-29 20:46:31 +0200 fs r273482 : #i103138# Rectangle conversions
2009-06-29 10:01:13 +0200 fs r273453 : #i103138#
refactored the code for positioning/zooming the control
Basically, we now allow adjustControlGeometry_throw (formerly known as positionControl_throw and setControlZoom) to
take an additional ViewTransformation parameter, describing the transformation to obtain the actual
control position/size. Consequently, positionControl itself also allows for a ViewTransformation parameter.
This has become necessary since during painting, the device which we created our control for might not necessarily
have a proper MapMode set. In this case, if we would use this map mode for calculating the control's position/size,
this would lead to wrong results.
Note that this problem was introduced by the fix for #i101398#: During the fix, we postponed the control creation
to a later time (when it is really needed). At this later time, the MapMode at the device is broken, at the earlier
time where we formerly crearted the control (createPrimitive2DSequence), it is not yet broken.
Whether or not the MapMode is defined as "broken" might depend on one's point of view, however ...
I consider it broken, since:
- we need the map mode to obtain the proper zoom level, which is to be forwarded to the control
- there are scenarios where the MapMode is *not* set to MAP_PIXEL (in those scenarios, everything works
fine), and there are scenarios where it *is* set to MAP_PIXEL (in those the bug 103138 appears).
It somehow feels wrong that one cannot rely on the device's map mode this way, but on the other hand
one has no possibility to obtain the current zoom by other means.
Note that one issue (still to be submitted) is left: In the page pane of a Draw/Impress document, controls
have a wrong text size. This is because in this pane, the above-mentioned "broken" map mode is used,
which means the controls have a zoom of "1:1" set, which is wrong here.
2009-06-29 09:52:13 +0200 fs r273452 : during #i103138#: belongsToDevice is unused nowadays
2009-06-24 12:40:06 +0200 fs r273329 : #i102888# #i102899#
2009-06-24 12:10:29 +0200 oj r273327 : #i103030# some code changes
2009-06-24 09:44:14 +0200 oj r273311 : #i103030# some code changes
2009-06-24 09:24:42 +0200 oj r273309 : #i103030# add log
2009-06-24 09:03:29 +0200 fs r273308 : if a col's table name is schema.table, properly quote all parts
2009-06-24 08:56:06 +0200 oj r273307 : #i102691# changed string
2009-06-23 13:31:43 +0200 oj r273280 : #i102479# fix date, time and datetime
2009-06-23 12:51:28 +0200 oj r273277 : #i103020# clear old expression when updating to avoid dead pointers in treelist userdata
2009-06-23 12:17:16 +0200 oj r273275 : #i103030# add LogBridge
2009-06-23 11:53:10 +0200 oj r273272 : shawdowed var resolved
2009-06-23 11:48:49 +0200 oj r273270 : #i103030# add :log to uno env if var UNO_ENV_LOG is set
2009-06-23 11:47:47 +0200 oj r273269 : #i103030# add LogBridge
2009-06-23 11:47:11 +0200 oj r273268 : #i103030# add LogBridge
2009-06-23 08:05:08 +0200 oj r273253 : #i102934# add key for collapsing
2009-06-22 13:21:33 +0200 fs r273225 : merging latest changes from CWS dba32d
2009-06-22 13:15:22 +0200 fs r273221 : why restrict to 12 entries?
2009-06-22 08:12:21 +0200 oj r273196 : #i102655# choosen > chosen typo fixed
2009-06-22 08:08:04 +0200 oj r273195 : #i102657# typo fix
2009-06-22 08:06:28 +0200 oj r273194 : #i102934# expanding and collasping of section
2009-06-22 08:05:52 +0200 oj r273193 : #i102930# set focus in treelistbox
2009-06-22 08:04:56 +0200 oj r273192 : #i102929# enable tabstop
2009-06-19 13:18:26 +0200 oj r273157 : remove unused param
2009-06-19 10:07:05 +0200 oj r273149 : CWS-TOOLING: rebase CWS dba32e to trunk@272827 (milestone: DEV300:m50)
2009-06-19 07:32:40 +0200 oj r273146 : merge from dba32d to dba32e
2009-06-19 07:22:56 +0200 oj r273145 : merge from dba32d to dba32e
2009-06-19 07:22:33 +0200 oj r273144 : merge from dba32d to dba32e
2009-06-18 14:09:34 +0200 fs r273116 : merging the latest changes from CWS dba32d (up to revision 273108) herein, which effectively is a rebase to DEV300.m50
2009-06-18 08:50:35 +0200 oj r273098 : #i102894# fix for new line in text
2009-06-18 08:28:48 +0200 oj r273097 : #i102892# check any
2009-06-18 08:21:34 +0200 oj r273096 : check if error is valid
2009-06-16 13:49:28 +0200 fs r273019 : why make a drop down control by default? The form control factory in SVX does this better those days ...
2009-06-10 09:53:20 +0200 oj r272797 : add lic text
2009-06-10 09:48:55 +0200 oj r272796 : test added for i101618
2009-06-09 14:57:39 +0200 oj r272771 : #i101618# access database document only when script container is needed
2009-06-09 12:42:25 +0200 oj r272765 : #i102497# check type property
2009-06-09 12:32:49 +0200 oj r272764 : adjust test cases
2009-06-09 12:31:58 +0200 oj r272763 : adjust test cases
2009-06-09 12:31:22 +0200 oj r272762 : adjust test cases
2009-06-09 11:35:42 +0200 oj r272761 : check if error is valid
2009-06-09 11:29:42 +0200 oj r272760 : #i102497# longvarchar was missing
2009-06-08 14:52:49 +0200 fs r272733 : #i102564# when setting a new field, also set m_nFieldType
2009-06-08 13:51:20 +0200 oj r272730 : add tests
2009-06-05 14:38:01 +0200 oj r272686 : add dep
2009-06-05 14:35:00 +0200 oj r272684 : add new tests
2009-06-05 13:41:18 +0200 oj r272681 : code clean ups
2009-06-05 12:40:51 +0200 oj r272678 : code cleanup
2009-06-05 12:02:57 +0200 oj r272677 : code cleanup
2009-06-05 10:42:38 +0200 oj r272670 : #i49320# impl export of single rows and as RTF and HTML
2009-06-03 14:30:37 +0200 oj r272576 : #i79649# check if file matches filter wildcard
2009-06-03 13:41:57 +0200 oj r272560 : #i102470# impl not b like 'c'
2009-08-26 10:09:17 +00:00
m_pCache - > deleteIterator ( this ) ;
}
2003-03-19 16:57:12 +00:00
m_pCache = NULL ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-10-11 10:21:40 +00:00
// comphelper::OPropertyArrayUsageHelper
2000-09-18 23:16:46 +00:00
: : cppu : : IPropertyArrayHelper * ORowSetBase : : createArrayHelper ( ) const
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::createArrayHelper " ) ;
2000-09-18 23:16:46 +00:00
Sequence < Property > aProps ;
describeProperties ( aProps ) ;
return new : : cppu : : OPropertyArrayHelper ( aProps ) ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
// cppu::OPropertySetHelper
: : cppu : : IPropertyArrayHelper & SAL_CALL ORowSetBase : : getInfoHelper ( )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getInfoHelper " ) ;
2000-09-18 23:16:46 +00:00
return * const_cast < ORowSetBase * > ( this ) - > getArrayHelper ( ) ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
// XRow
sal_Bool SAL_CALL ORowSetBase : : wasNull ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::wasNull " ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2009-04-23 10:42:05 +00:00
return impl_wasNull ( ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2009-04-23 10:42:05 +00:00
sal_Bool ORowSetBase : : impl_wasNull ( )
{
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::impl_wasNull " ) ;
2010-10-15 12:22:54 -05:00
return ( ( m_nLastColumnIndex ! = - 1 ) & & ! m_aCurrentRow . isNull ( ) & & m_aCurrentRow ! = m_pCache - > getEnd ( ) & & m_aCurrentRow - > is ( ) ) ? ( ( * m_aCurrentRow ) - > get ( ) ) [ m_nLastColumnIndex ] . isNull ( ) : sal_True ;
2009-04-23 10:42:05 +00:00
}
2006-01-25 14:10:18 +00:00
2001-07-30 07:53:02 +00:00
const ORowSetValue & ORowSetBase : : getValue ( sal_Int32 columnIndex )
2000-09-18 23:16:46 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getValue " ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2009-04-23 10:42:05 +00:00
return impl_getValue ( columnIndex ) ;
}
2010-10-12 22:40:56 +02:00
2009-04-23 10:42:05 +00:00
const ORowSetValue & ORowSetBase : : impl_getValue ( sal_Int32 columnIndex )
{
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::impl_getValue " ) ;
2005-10-13 16:09:45 +00:00
if ( m_bBeforeFirst | | m_bAfterLast )
{
2011-03-12 12:04:35 +01:00
OSL_FAIL ( " ORowSetBase::getValue: Illegal call here (we're before first or after last)! " ) ;
2009-11-27 10:17:16 +01:00
: : dbtools : : throwSQLException ( DBACORE_RESSTRING ( RID_STR_CURSOR_BEFORE_OR_AFTER ) , SQL_INVALID_CURSOR_POSITION , * m_pMySelf ) ;
2005-10-13 16:09:45 +00:00
}
2000-09-18 23:16:46 +00:00
2009-04-23 10:42:05 +00:00
if ( impl_rowDeleted ( ) )
2006-02-06 15:54:07 +00:00
{
2006-01-25 14:10:18 +00:00
return m_aEmptyValue ;
2006-02-06 15:54:07 +00:00
}
2006-01-25 14:10:18 +00:00
2010-10-15 12:22:54 -05:00
bool bValidCurrentRow = ( ! m_aCurrentRow . isNull ( ) & & m_aCurrentRow ! = m_pCache - > getEnd ( ) & & m_aCurrentRow - > is ( ) ) ;
2006-01-25 14:10:18 +00:00
if ( ! bValidCurrentRow )
{
// currentrow is null when the clone moves the window
positionCache ( MOVE_NONE_REFRESH_ONLY ) ;
m_aCurrentRow = m_pCache - > m_aMatrixIter ;
2011-02-23 11:36:11 +01:00
m_bIsInsertRow = sal_False ;
2006-01-25 14:10:18 +00:00
OSL_ENSURE ( ! m_aCurrentRow . isNull ( ) , " ORowSetBase::getValue: we don't stand on a valid row! Row is null. " ) ;
2010-10-15 12:22:54 -05:00
bValidCurrentRow = ( ! m_aCurrentRow . isNull ( ) & & m_aCurrentRow ! = m_pCache - > getEnd ( ) & & m_aCurrentRow - > is ( ) ) ;
2006-01-25 14:10:18 +00:00
}
if ( bValidCurrentRow )
2002-11-13 05:56:59 +00:00
{
2003-04-15 15:02:32 +00:00
# if OSL_DEBUG_LEVEL > 0
2006-08-24 09:54:58 +00:00
ORowSetMatrix : : iterator aCacheEnd ;
ORowSetMatrix : : iterator aCurrentRow ;
aCacheEnd = m_pCache - > getEnd ( ) ;
aCurrentRow = m_aCurrentRow ;
2006-07-26 06:45:59 +00:00
ORowSetCacheMap : : iterator aCacheIter = m_aCurrentRow . getIter ( ) ;
ORowSetCacheIterator_Helper aHelper = aCacheIter - > second ;
ORowSetMatrix : : iterator k = aHelper . aIterator ;
for ( ; k ! = m_pCache - > getEnd ( ) ; + + k )
{
2010-10-20 23:38:55 +02:00
ORowSetValueVector * pTemp = k - > get ( ) ;
2006-07-26 06:45:59 +00:00
OSL_ENSURE ( pTemp ! = ( void * ) 0xfeeefeee , " HALT! " ) ;
}
# endif
OSL_ENSURE ( ! m_aCurrentRow . isNull ( ) & & m_aCurrentRow < m_pCache - > getEnd ( ) & & aCacheIter ! = m_pCache - > m_aCacheIterators . end ( ) , " Invalid iterator set for currentrow! " ) ;
# if OSL_DEBUG_LEVEL > 0
ORowSetRow rRow = ( * m_aCurrentRow ) ;
2010-10-15 12:22:54 -05:00
OSL_ENSURE ( rRow . is ( ) & & static_cast < sal_uInt16 > ( columnIndex ) < ( rRow - > get ( ) ) . size ( ) , " Invalid size of vector! " ) ;
2002-12-05 08:53:00 +00:00
# endif
2008-12-30 13:32:01 +00:00
return ( ( * m_aCurrentRow ) - > get ( ) ) [ m_nLastColumnIndex = columnIndex ] ;
2002-11-13 05:56:59 +00:00
}
2001-07-12 06:56:32 +00:00
2006-01-25 14:10:18 +00:00
// we should normally never reach this
2001-07-30 07:53:02 +00:00
return m_aEmptyValue ;
2001-06-26 09:12:41 +00:00
}
2010-10-12 22:40:56 +02:00
2001-06-26 09:12:41 +00:00
: : rtl : : OUString SAL_CALL ORowSetBase : : getString ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getString " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : getBoolean ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getBoolean " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Int8 SAL_CALL ORowSetBase : : getByte ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getByte " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Int16 SAL_CALL ORowSetBase : : getShort ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getShort " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Int32 SAL_CALL ORowSetBase : : getInt ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getInt " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Int64 SAL_CALL ORowSetBase : : getLong ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getLong " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
float SAL_CALL ORowSetBase : : getFloat ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getFloat " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
double SAL_CALL ORowSetBase : : getDouble ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getDouble " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
Sequence < sal_Int8 > SAL_CALL ORowSetBase : : getBytes ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getBytes " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
: : com : : sun : : star : : util : : Date SAL_CALL ORowSetBase : : getDate ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getDate " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
: : com : : sun : : star : : util : : Time SAL_CALL ORowSetBase : : getTime ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getTime " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
: : com : : sun : : star : : util : : DateTime SAL_CALL ORowSetBase : : getTimestamp ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getTimestamp " ) ;
2006-02-06 15:54:07 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
return getValue ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
Reference < : : com : : sun : : star : : io : : XInputStream > SAL_CALL ORowSetBase : : getBinaryStream ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getBinaryStream " ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2000-09-29 14:23:36 +00:00
2007-07-24 11:03:50 +00:00
if ( m_bBeforeFirst | | m_bAfterLast )
{
2011-03-12 12:04:35 +01:00
OSL_FAIL ( " ORowSetBase::getBinaryStream: Illegal call here (we're before first or after last)! " ) ;
2009-11-27 10:17:16 +01:00
: : dbtools : : throwSQLException ( DBACORE_RESSTRING ( RID_STR_CURSOR_BEFORE_OR_AFTER ) , SQL_INVALID_CURSOR_POSITION , * m_pMySelf ) ;
2007-07-24 11:03:50 +00:00
}
2006-02-06 15:54:07 +00:00
2009-04-23 10:42:05 +00:00
if ( impl_rowDeleted ( ) )
2001-07-12 06:56:32 +00:00
{
2007-07-24 11:03:50 +00:00
return NULL ;
}
2006-01-25 14:10:18 +00:00
2010-10-15 12:22:54 -05:00
bool bValidCurrentRow = ( ! m_aCurrentRow . isNull ( ) & & m_aCurrentRow ! = m_pCache - > getEnd ( ) & & m_aCurrentRow - > is ( ) ) ;
2007-07-24 11:03:50 +00:00
if ( ! bValidCurrentRow )
{
positionCache ( MOVE_NONE_REFRESH_ONLY ) ;
m_aCurrentRow = m_pCache - > m_aMatrixIter ;
2011-02-23 11:36:11 +01:00
m_bIsInsertRow = sal_False ;
2007-07-24 11:03:50 +00:00
OSL_ENSURE ( ! m_aCurrentRow . isNull ( ) , " ORowSetBase::getBinaryStream: we don't stand on a valid row! Row is null. " ) ;
2001-07-12 11:14:47 +00:00
2010-10-15 12:22:54 -05:00
bValidCurrentRow = ( ! m_aCurrentRow . isNull ( ) & & m_aCurrentRow ! = m_pCache - > getEnd ( ) & & m_aCurrentRow - > is ( ) ) ;
2001-07-12 06:56:32 +00:00
}
2007-07-24 11:03:50 +00:00
if ( bValidCurrentRow )
2008-12-30 13:32:01 +00:00
return new : : comphelper : : SequenceInputStream ( ( ( * m_aCurrentRow ) - > get ( ) ) [ m_nLastColumnIndex = columnIndex ] . getSequence ( ) ) ;
2001-07-12 06:56:32 +00:00
2007-07-24 11:03:50 +00:00
// we should normally never reach this
2000-09-29 14:23:36 +00:00
return Reference < : : com : : sun : : star : : io : : XInputStream > ( ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
Reference < : : com : : sun : : star : : io : : XInputStream > SAL_CALL ORowSetBase : : getCharacterStream ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getCharacterStream " ) ;
2001-06-26 09:12:41 +00:00
return getBinaryStream ( columnIndex ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2006-06-20 01:36:00 +00:00
Any SAL_CALL ORowSetBase : : getObject ( sal_Int32 columnIndex , const Reference < XNameAccess > & /*typeMap*/ ) throw ( SQLException , RuntimeException )
2000-09-18 23:16:46 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getObject " ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2000-09-18 23:16:46 +00:00
2006-04-19 12:18:30 +00:00
return getValue ( columnIndex ) . makeAny ( ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2006-06-20 01:36:00 +00:00
Reference < XRef > SAL_CALL ORowSetBase : : getRef ( sal_Int32 /*columnIndex*/ ) throw ( SQLException , RuntimeException )
2000-09-18 23:16:46 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getRef " ) ;
2006-06-20 01:36:00 +00:00
: : dbtools : : throwFeatureNotImplementedException ( " XRow::getRef " , * m_pMySelf ) ;
return NULL ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2009-11-13 13:30:51 +01:00
Reference < XBlob > SAL_CALL ORowSetBase : : getBlob ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
2000-09-18 23:16:46 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getBlob " ) ;
2009-11-13 13:30:51 +01:00
return Reference < XBlob > ( getValue ( columnIndex ) . makeAny ( ) , UNO_QUERY ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2009-11-13 13:30:51 +01:00
Reference < XClob > SAL_CALL ORowSetBase : : getClob ( sal_Int32 columnIndex ) throw ( SQLException , RuntimeException )
2000-09-18 23:16:46 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getClob " ) ;
2009-11-13 13:30:51 +01:00
return Reference < XClob > ( getValue ( columnIndex ) . makeAny ( ) , UNO_QUERY ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2006-06-20 01:36:00 +00:00
Reference < XArray > SAL_CALL ORowSetBase : : getArray ( sal_Int32 /*columnIndex*/ ) throw ( SQLException , RuntimeException )
2000-09-18 23:16:46 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getArray " ) ;
2006-06-20 01:36:00 +00:00
: : dbtools : : throwFeatureNotImplementedException ( " XRow::getArray " , * m_pMySelf ) ;
return NULL ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
// ::com::sun::star::sdbcx::XRowLocate
Any SAL_CALL ORowSetBase : : getBookmark ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getBookmark " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::getBookmark() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2006-01-25 14:10:18 +00:00
checkCache ( ) ;
2001-06-26 09:12:41 +00:00
2006-01-25 14:10:18 +00:00
if ( m_bBeforeFirst | | m_bAfterLast )
2009-11-27 10:17:16 +01:00
: : dbtools : : throwSQLException ( DBACORE_RESSTRING ( RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER ) , SQL_INVALID_CURSOR_POSITION , * m_pMySelf ) ;
2006-01-25 14:10:18 +00:00
2009-04-23 10:42:05 +00:00
if ( impl_rowDeleted ( ) )
2009-11-27 10:17:16 +01:00
: : dbtools : : throwSQLException ( DBACORE_RESSTRING ( RID_STR_NO_BOOKMARK_DELETED ) , SQL_INVALID_CURSOR_POSITION , * m_pMySelf ) ;
2000-09-18 23:16:46 +00:00
2006-01-25 14:10:18 +00:00
OSL_ENSURE ( m_aBookmark . hasValue ( ) , " ORowSetBase::getBookmark: bookmark has no value! " ) ;
2000-09-29 14:23:36 +00:00
return m_aBookmark ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : moveToBookmark ( const Any & bookmark ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::moveToBookmark " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::moveToBookmark(Any) Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-01-22 06:38:24 +00:00
OSL_ENSURE ( bookmark . hasValue ( ) , " ORowSetBase::moveToBookmark bookmark has no value! " ) ;
2002-08-13 10:13:00 +00:00
: : osl : : ResettableMutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
2001-04-05 06:51:27 +00:00
if ( ! bookmark . hasValue ( ) | | m_nResultSetType = = ResultSetType : : FORWARD_ONLY )
2001-07-12 06:56:32 +00:00
{
if ( bookmark . hasValue ( ) )
2011-03-12 12:04:35 +01:00
OSL_FAIL ( " MoveToBookmark is not possible when we are only forward " ) ;
2001-07-12 06:56:32 +00:00
else
2011-03-12 12:04:35 +01:00
OSL_FAIL ( " Bookmark is not valid " ) ;
2001-04-19 06:14:49 +00:00
throwFunctionSequenceException ( * m_pMySelf ) ;
2001-07-12 06:56:32 +00:00
}
2000-09-18 23:16:46 +00:00
2000-09-29 14:23:36 +00:00
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2000-09-29 14:23:36 +00:00
2006-07-10 14:03:37 +00:00
sal_Bool bRet ( notifyAllListenersCursorBeforeMove ( aGuard ) ) ;
if ( bRet )
2001-04-06 09:19:13 +00:00
{
// check if we are inserting a row
2009-04-23 10:42:05 +00:00
sal_Bool bWasNew = m_pCache - > m_bNew | | impl_rowDeleted ( ) ;
2002-12-05 08:53:00 +00:00
ORowSetNotifier aNotifier ( this ) ;
// this will call cancelRowModification on the cache if necessary
2000-09-29 14:23:36 +00:00
2003-03-19 16:57:12 +00:00
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2000-09-18 23:16:46 +00:00
2001-04-06 09:19:13 +00:00
bRet = m_pCache - > moveToBookmark ( bookmark ) ;
2006-04-19 12:18:30 +00:00
doCancelModification ( ) ;
2001-04-06 09:19:13 +00:00
if ( bRet )
{
2002-12-05 08:53:00 +00:00
// notification order
// - column values
// - cursorMoved
2006-01-25 14:10:18 +00:00
setCurrentRow ( sal_True , sal_True , aOldValues , aGuard ) ;
2001-07-12 06:56:32 +00:00
}
else
{
movementFailed ( ) ;
2001-04-06 09:19:13 +00:00
}
2002-12-05 08:53:00 +00:00
// - IsModified
// - IsNew
aNotifier . fire ( ) ;
2000-09-29 14:23:36 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::moveToBookmark(Any) = %i Clone = %i " , bRet , m_bClone ) ;
2000-09-18 23:16:46 +00:00
return bRet ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : moveRelativeToBookmark ( const Any & bookmark , sal_Int32 rows ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::moveRelativeToBookmark " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::moveRelativeToBookmark(Any,%i) Clone = %i " , rows , m_bClone ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2000-09-29 14:23:36 +00:00
2002-08-13 10:13:00 +00:00
: : osl : : ResettableMutexGuard aGuard ( * m_pMutex ) ;
2000-09-29 14:23:36 +00:00
2001-06-26 09:12:41 +00:00
checkPositioningAllowed ( ) ;
2006-07-10 14:03:37 +00:00
sal_Bool bRet ( notifyAllListenersCursorBeforeMove ( aGuard ) ) ;
if ( bRet )
2001-04-06 09:19:13 +00:00
{
// check if we are inserting a row
2006-02-06 15:54:07 +00:00
sal_Bool bWasNew = m_pCache - > m_bNew | | rowDeleted ( ) ;
2002-12-05 08:53:00 +00:00
ORowSetNotifier aNotifier ( this ) ;
// this will call cancelRowModification on the cache if necessary
2000-09-29 14:23:36 +00:00
2003-03-19 16:57:12 +00:00
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2000-09-18 23:16:46 +00:00
2001-04-06 09:19:13 +00:00
bRet = m_pCache - > moveRelativeToBookmark ( bookmark , rows ) ;
2006-04-19 12:18:30 +00:00
doCancelModification ( ) ;
2001-04-06 09:19:13 +00:00
if ( bRet )
2001-01-24 08:52:19 +00:00
{
2002-12-05 08:53:00 +00:00
// notification order
// - column values
// - cursorMoved
2006-01-25 14:10:18 +00:00
setCurrentRow ( sal_True , sal_True , aOldValues , aGuard ) ;
2001-01-24 08:52:19 +00:00
}
2001-07-12 06:56:32 +00:00
else
movementFailed ( ) ;
2002-12-05 08:53:00 +00:00
// - IsModified
// - IsNew
aNotifier . fire ( ) ;
// RowCount/IsRowCountFinal
fireRowcount ( ) ;
2000-09-29 14:23:36 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::moveRelativeToBookmark(Any,%i) = %i Clone = %i " , rows , bRet , m_bClone ) ;
2000-09-18 23:16:46 +00:00
return bRet ;
}
2010-10-12 22:40:56 +02:00
2006-06-20 01:36:00 +00:00
sal_Int32 SAL_CALL ORowSetBase : : compareBookmarks ( const Any & _first , const Any & _second ) throw ( SQLException , RuntimeException )
2000-09-18 23:16:46 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::compareBookmarks " ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2006-06-20 01:36:00 +00:00
return m_pCache - > compareBookmarks ( _first , _second ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : hasOrderedBookmarks ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::hasOrderedBookmarks " ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2000-09-18 23:16:46 +00:00
return m_pCache - > hasOrderedBookmarks ( ) ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Int32 SAL_CALL ORowSetBase : : hashBookmark ( const Any & bookmark ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::hashBookmark " ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2000-09-18 23:16:46 +00:00
return m_pCache - > hashBookmark ( bookmark ) ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
// XResultSetMetaDataSupplier
Reference < XResultSetMetaData > SAL_CALL ORowSetBase : : getMetaData ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getMetaData " ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2000-09-18 23:16:46 +00:00
2001-07-18 09:39:14 +00:00
Reference < XResultSetMetaData > xMeta ;
if ( m_pCache )
xMeta = m_pCache - > getMetaData ( ) ;
return xMeta ;
2000-09-18 23:16:46 +00:00
}
// XColumnLocate
sal_Int32 SAL_CALL ORowSetBase : : findColumn ( const : : rtl : : OUString & columnName ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::findColumn " ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2000-09-18 23:16:46 +00:00
: : osl : : MutexGuard aGuard ( m_aColumnsMutex ) ;
2010-11-09 22:15:21 +00:00
// it is possible to save some time here when we remember the names - position relation in a map
2001-03-27 05:42:16 +00:00
return m_pColumns ? m_pColumns - > findColumn ( columnName ) : sal_Int32 ( 0 ) ;
2000-09-18 23:16:46 +00:00
}
// ::com::sun::star::sdbcx::XColumnsSupplier
Reference < XNameAccess > SAL_CALL ORowSetBase : : getColumns ( ) throw ( RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getColumns " ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2000-09-18 23:16:46 +00:00
2001-06-26 09:12:41 +00:00
: : osl : : MutexGuard aGuard ( m_aColumnsMutex ) ;
2000-10-17 09:19:03 +00:00
if ( ! m_pColumns )
2001-05-28 12:03:37 +00:00
{
2002-01-18 17:24:07 +00:00
if ( ! m_pEmptyCollection )
m_pEmptyCollection = new OEmptyCollection ( * m_pMySelf , m_aColumnsMutex ) ;
return m_pEmptyCollection ;
2001-05-28 12:03:37 +00:00
}
2000-09-18 23:16:46 +00:00
return m_pColumns ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
// XResultSet
sal_Bool SAL_CALL ORowSetBase : : next ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::next " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::next() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2002-08-13 10:13:00 +00:00
: : osl : : ResettableMutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2000-09-18 23:16:46 +00:00
2006-07-10 14:03:37 +00:00
sal_Bool bRet ( notifyAllListenersCursorBeforeMove ( aGuard ) ) ;
if ( bRet )
2000-11-14 12:28:20 +00:00
{
2001-04-06 09:19:13 +00:00
// check if we are inserting a row
2009-04-23 10:42:05 +00:00
sal_Bool bWasNew = m_pCache - > m_bNew | | impl_rowDeleted ( ) ;
2002-12-05 08:53:00 +00:00
ORowSetNotifier aNotifier ( this ) ;
// this will call cancelRowModification on the cache if necessary
2001-04-06 09:19:13 +00:00
2003-03-19 16:57:12 +00:00
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2001-12-19 14:16:17 +00:00
2006-01-25 14:10:18 +00:00
positionCache ( MOVE_FORWARD ) ;
2005-03-18 09:05:00 +00:00
sal_Bool bAfterLast = m_pCache - > isAfterLast ( ) ;
2001-04-06 09:19:13 +00:00
bRet = m_pCache - > next ( ) ;
2006-04-19 12:18:30 +00:00
doCancelModification ( ) ;
2002-12-05 08:53:00 +00:00
2005-03-18 09:05:00 +00:00
if ( bRet | | bAfterLast ! = m_pCache - > isAfterLast ( ) )
2001-04-06 09:19:13 +00:00
{
2002-12-05 08:53:00 +00:00
// notification order
// - column values
// - cursorMoved
2006-01-25 14:10:18 +00:00
setCurrentRow ( bRet , sal_True , aOldValues , aGuard ) ;
2001-07-12 06:56:32 +00:00
OSL_ENSURE ( ! m_bBeforeFirst , " BeforeFirst is true. I don't know why? " ) ;
2001-04-06 09:19:13 +00:00
}
else
{
2001-07-12 06:56:32 +00:00
// moved after the last row
movementFailed ( ) ;
OSL_ENSURE ( m_bAfterLast , " AfterLast is false. I don't know why? " ) ;
2001-04-06 09:19:13 +00:00
}
2002-12-05 08:53:00 +00:00
// - IsModified
// - IsNew
aNotifier . fire ( ) ;
// - RowCount/IsRowCountFinal
2001-04-06 09:19:13 +00:00
fireRowcount ( ) ;
2000-11-10 15:05:41 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::next() = %i Clone = %i ID = %i " , bRet , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2000-09-18 23:16:46 +00:00
return bRet ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : isBeforeFirst ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::isBeforeFirst " ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2006-01-25 14:10:18 +00:00
checkCache ( ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::isBeforeFirst() = %i Clone = %i " , m_bBeforeFirst , m_bClone ) ;
2000-09-18 23:16:46 +00:00
return m_bBeforeFirst ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : isAfterLast ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::isAfterLast " ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2006-01-25 14:10:18 +00:00
checkCache ( ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::isAfterLast() = %i Clone = %i " , m_bAfterLast , m_bClone ) ;
2000-09-18 23:16:46 +00:00
2001-01-24 08:52:19 +00:00
return m_bAfterLast ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2002-12-05 13:10:11 +00:00
sal_Bool ORowSetBase : : isOnFirst ( )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::isOnFirst " ) ;
2002-12-05 13:10:11 +00:00
return isFirst ( ) ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : isFirst ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::isFirst " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::isFirst() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2004-08-02 14:00:45 +00:00
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2006-01-25 14:10:18 +00:00
checkCache ( ) ;
2000-09-18 23:16:46 +00:00
2006-01-25 14:10:18 +00:00
if ( m_bBeforeFirst | | m_bAfterLast )
return sal_False ;
2009-04-23 10:42:05 +00:00
if ( impl_rowDeleted ( ) )
2006-01-25 14:10:18 +00:00
return ( m_nDeletedPosition = = 1 ) ;
positionCache ( MOVE_NONE_REFRESH_ONLY ) ;
sal_Bool bIsFirst = m_pCache - > isFirst ( ) ;
2000-09-18 23:16:46 +00:00
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::isFirst() = %i Clone = %i " , bIsFirst , m_bClone ) ;
2001-07-12 06:56:32 +00:00
return bIsFirst ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2002-12-05 13:10:11 +00:00
sal_Bool ORowSetBase : : isOnLast ( )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::isOnLast " ) ;
2002-12-05 13:10:11 +00:00
return isLast ( ) ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : isLast ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::isLast " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::isLast() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2006-01-25 14:10:18 +00:00
checkCache ( ) ;
if ( m_bBeforeFirst | | m_bAfterLast )
return sal_False ;
2009-04-23 10:42:05 +00:00
if ( impl_rowDeleted ( ) )
2008-12-11 07:05:03 +00:00
{
2006-01-25 14:10:18 +00:00
if ( ! m_pCache - > m_bRowCountFinal )
return sal_False ;
else
return ( m_nDeletedPosition = = impl_getRowCount ( ) ) ;
2008-12-11 07:05:03 +00:00
}
2006-01-25 14:10:18 +00:00
positionCache ( MOVE_NONE_REFRESH_ONLY ) ;
sal_Bool bIsLast = m_pCache - > isLast ( ) ;
2000-09-18 23:16:46 +00:00
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::isLast() = %i Clone = %i " , bIsLast , m_bClone ) ;
2001-07-12 06:56:32 +00:00
return bIsLast ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
void SAL_CALL ORowSetBase : : beforeFirst ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::beforeFirst " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::beforeFirst() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2002-08-13 10:13:00 +00:00
: : osl : : ResettableMutexGuard aGuard ( * m_pMutex ) ;
2000-09-29 14:23:36 +00:00
2001-06-26 09:12:41 +00:00
checkPositioningAllowed ( ) ;
2001-12-19 14:16:17 +00:00
// check if we are inserting a row
2009-04-23 10:42:05 +00:00
sal_Bool bWasNew = m_pCache - > m_bNew | | impl_rowDeleted ( ) ;
2001-12-19 14:16:17 +00:00
2002-08-13 10:13:00 +00:00
if ( ( bWasNew | | ! m_bBeforeFirst ) & & notifyAllListenersCursorBeforeMove ( aGuard ) )
2000-09-18 23:16:46 +00:00
{
2002-12-05 08:53:00 +00:00
ORowSetNotifier aNotifier ( this ) ;
// this will call cancelRowModification on the cache if necessary
2001-04-06 09:19:13 +00:00
2005-03-18 09:05:00 +00:00
if ( ! m_bBeforeFirst )
2001-12-19 14:16:17 +00:00
{
2005-03-18 09:05:00 +00:00
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2001-04-06 09:19:13 +00:00
m_pCache - > beforeFirst ( ) ;
2006-04-19 12:18:30 +00:00
doCancelModification ( ) ;
2002-12-05 08:53:00 +00:00
2003-06-25 10:02:35 +00:00
// notification order
// - column values
// - cursorMoved
2006-01-25 14:10:18 +00:00
setCurrentRow ( sal_True , sal_True , aOldValues , aGuard ) ;
2002-12-05 08:53:00 +00:00
2005-03-18 09:05:00 +00:00
// - IsModified
// - Isnew
aNotifier . fire ( ) ;
// - RowCount/IsRowCountFinal
fireRowcount ( ) ;
}
2002-12-05 08:53:00 +00:00
// to be done _after_ the notifications!
2003-03-19 16:57:12 +00:00
m_aOldRow - > clearRow ( ) ;
2000-09-18 23:16:46 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::beforeFirst() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
void SAL_CALL ORowSetBase : : afterLast ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::afterLast " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::afterLast() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2000-09-18 23:16:46 +00:00
2002-08-13 10:13:00 +00:00
: : osl : : ResettableMutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkPositioningAllowed ( ) ;
2009-04-23 10:42:05 +00:00
sal_Bool bWasNew = m_pCache - > m_bNew | | impl_rowDeleted ( ) ;
2001-12-19 14:16:17 +00:00
2002-08-13 10:13:00 +00:00
if ( ( bWasNew | | ! m_bAfterLast ) & & notifyAllListenersCursorBeforeMove ( aGuard ) )
2000-09-18 23:16:46 +00:00
{
2001-04-06 09:19:13 +00:00
// check if we are inserting a row
2002-12-05 08:53:00 +00:00
ORowSetNotifier aNotifier ( this ) ;
// this will call cancelRowModification on the cache if necessary
2001-04-06 09:19:13 +00:00
if ( ! m_bAfterLast )
{
2003-03-19 16:57:12 +00:00
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2002-12-05 08:53:00 +00:00
2001-04-06 09:19:13 +00:00
m_pCache - > afterLast ( ) ;
2006-04-19 12:18:30 +00:00
doCancelModification ( ) ;
2002-12-05 08:53:00 +00:00
// notification order
// - column values
// - cursorMoved
2006-01-25 14:10:18 +00:00
setCurrentRow ( sal_True , sal_True , aOldValues , aGuard ) ;
2002-12-05 08:53:00 +00:00
// - IsModified
// - Isnew
aNotifier . fire ( ) ;
// - RowCount/IsRowCountFinal
fireRowcount ( ) ;
2001-04-06 09:19:13 +00:00
}
2000-09-18 23:16:46 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::afterLast() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2002-12-05 13:10:11 +00:00
sal_Bool SAL_CALL ORowSetBase : : move ( : : std : : mem_fun_t < sal_Bool , ORowSetBase > & _aCheckFunctor ,
: : std : : mem_fun_t < sal_Bool , ORowSetCache > & _aMovementFunctor )
2000-09-18 23:16:46 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::move " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::move() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2002-08-13 10:13:00 +00:00
: : osl : : ResettableMutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkPositioningAllowed ( ) ;
2000-09-29 14:23:36 +00:00
2006-07-10 14:03:37 +00:00
sal_Bool bRet ( notifyAllListenersCursorBeforeMove ( aGuard ) ) ;
if ( bRet )
2001-04-06 09:19:13 +00:00
{
// check if we are inserting a row
2006-02-06 15:54:07 +00:00
sal_Bool bWasNew = m_pCache - > m_bNew | | rowDeleted ( ) ;
2002-12-05 08:53:00 +00:00
ORowSetNotifier aNotifier ( this ) ;
// this will call cancelRowModification on the cache if necessary
2000-09-29 14:23:36 +00:00
2003-03-19 16:57:12 +00:00
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2000-09-18 23:16:46 +00:00
2002-12-05 13:10:11 +00:00
sal_Bool bMoved = ( bWasNew | | ! _aCheckFunctor ( this ) ) ;
2000-09-18 23:16:46 +00:00
2002-12-05 13:10:11 +00:00
bRet = _aMovementFunctor ( m_pCache ) ;
2006-04-19 12:18:30 +00:00
doCancelModification ( ) ;
2002-12-05 08:53:00 +00:00
2002-12-05 13:10:11 +00:00
if ( bRet )
2002-12-05 08:53:00 +00:00
{
// notification order
// - column values
// - cursorMoved
2006-01-25 14:10:18 +00:00
setCurrentRow ( bMoved , sal_True , aOldValues , aGuard ) ;
2002-12-05 08:53:00 +00:00
}
2001-04-06 09:19:13 +00:00
else
2002-12-05 08:53:00 +00:00
{ // first goes wrong so there is no row
2001-07-12 06:56:32 +00:00
movementFailed ( ) ;
2001-04-06 09:19:13 +00:00
}
2002-12-05 08:53:00 +00:00
// - IsModified
// - IsNew
aNotifier . fire ( ) ;
// - RowCount/IsRowCountFinal
2001-04-06 09:19:13 +00:00
fireRowcount ( ) ;
2000-11-14 12:28:20 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::move() = %i Clone = %i " , bRet , m_bClone ) ;
2000-09-18 23:16:46 +00:00
return bRet ;
}
2010-10-12 22:40:56 +02:00
2002-12-05 13:10:11 +00:00
sal_Bool SAL_CALL ORowSetBase : : first ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::first " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::first() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2002-12-10 11:38:44 +00:00
: : std : : mem_fun_t < sal_Bool , ORowSetBase > ioF_tmp ( & ORowSetBase : : isOnFirst ) ;
: : std : : mem_fun_t < sal_Bool , ORowSetCache > F_tmp ( & ORowSetCache : : first ) ;
return move ( ioF_tmp , F_tmp ) ;
2002-12-05 13:10:11 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : last ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::last " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::last() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2002-12-10 11:38:44 +00:00
: : std : : mem_fun_t < sal_Bool , ORowSetBase > ioL_tmp ( & ORowSetBase : : isOnLast ) ;
: : std : : mem_fun_t < sal_Bool , ORowSetCache > L_tmp ( & ORowSetCache : : last ) ;
return move ( ioL_tmp , L_tmp ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Int32 SAL_CALL ORowSetBase : : getRow ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getRow " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::getRow() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2006-02-06 15:54:07 +00:00
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2009-04-23 10:42:05 +00:00
return impl_getRow ( ) ;
}
2010-10-12 22:40:56 +02:00
2009-04-23 10:42:05 +00:00
sal_Int32 ORowSetBase : : impl_getRow ( )
{
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::impl_getRow " ) ;
2001-06-26 09:12:41 +00:00
sal_Int32 nPos = 0 ;
2006-01-25 14:10:18 +00:00
if ( m_bBeforeFirst )
nPos = 0 ;
else if ( m_bAfterLast )
nPos = impl_getRowCount ( ) + 1 ;
2009-04-23 10:42:05 +00:00
else if ( impl_rowDeleted ( ) )
2006-01-25 14:10:18 +00:00
nPos = m_nDeletedPosition ;
2006-02-06 15:54:07 +00:00
else if ( ! m_bClone & & m_pCache - > m_bNew )
2006-01-25 14:10:18 +00:00
nPos = 0 ;
else
2001-06-26 09:12:41 +00:00
{
2006-01-25 14:10:18 +00:00
if ( m_pCache - > isAfterLast ( )
| | m_pCache - > isBeforeFirst ( )
| | ( m_pCache - > compareBookmarks ( m_aBookmark , m_pCache - > getBookmark ( ) ) ! = CompareBookmark : : EQUAL )
)
2001-06-26 09:12:41 +00:00
{
2006-01-25 14:10:18 +00:00
positionCache ( MOVE_NONE_REFRESH_ONLY ) ;
2001-06-26 09:12:41 +00:00
}
2006-01-25 14:10:18 +00:00
nPos = m_pCache - > getRow ( ) ;
2001-06-26 09:12:41 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::impl_getRow() = %i Clone = %i ID = %i " , nPos , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-06-26 09:12:41 +00:00
return nPos ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : absolute ( sal_Int32 row ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::absolute " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::absolute(%i) Clone = %i " , row , m_bClone ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2002-08-13 10:13:00 +00:00
: : osl : : ResettableMutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkPositioningAllowed ( ) ;
2000-09-18 23:16:46 +00:00
2006-07-10 14:03:37 +00:00
sal_Bool bRet = ( row > 0 )
& & notifyAllListenersCursorBeforeMove ( aGuard ) ;
if ( bRet )
2000-09-18 23:16:46 +00:00
{
2001-04-06 09:19:13 +00:00
// check if we are inserting a row
2006-02-06 15:54:07 +00:00
sal_Bool bWasNew = m_pCache - > m_bNew | | rowDeleted ( ) ;
2002-12-05 08:53:00 +00:00
ORowSetNotifier aNotifier ( this ) ;
// this will call cancelRowModification on the cache if necessary
2001-04-06 09:19:13 +00:00
2003-03-19 16:57:12 +00:00
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2001-04-06 09:19:13 +00:00
bRet = m_pCache - > absolute ( row ) ;
2006-04-19 12:18:30 +00:00
doCancelModification ( ) ;
2002-12-05 08:53:00 +00:00
2001-04-06 09:19:13 +00:00
if ( bRet )
{
2002-12-05 08:53:00 +00:00
// notification order
// - column values
// - cursorMoved
2006-01-25 14:10:18 +00:00
setCurrentRow ( sal_True , sal_True , aOldValues , aGuard ) ;
2001-04-06 09:19:13 +00:00
}
else
2001-07-12 06:56:32 +00:00
{ // absolute movement goes wrong we stand left or right side of the rows
movementFailed ( ) ;
2001-04-06 09:19:13 +00:00
}
2002-12-05 08:53:00 +00:00
// - IsModified
// - IsNew
aNotifier . fire ( ) ;
// - RowCount/IsRowCountFinal
2001-04-06 09:19:13 +00:00
fireRowcount ( ) ;
2000-09-18 23:16:46 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::absolute(%i) = %i Clone = %i " , row , bRet , m_bClone ) ;
2000-09-18 23:16:46 +00:00
return bRet ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : relative ( sal_Int32 rows ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::relative " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::relative(%i) Clone = %i " , rows , m_bClone ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2002-08-13 10:13:00 +00:00
: : osl : : ResettableMutexGuard aGuard ( * m_pMutex ) ;
2000-09-18 23:16:46 +00:00
if ( ! rows )
return sal_True ; // in this case do nothing
2001-06-26 09:12:41 +00:00
checkPositioningAllowed ( ) ;
2000-09-18 23:16:46 +00:00
2006-07-10 14:03:37 +00:00
sal_Bool bRet =
( ( ! m_bAfterLast | | rows < = 0 )
& & ( ! m_bBeforeFirst | | rows > = 0 )
& & notifyAllListenersCursorBeforeMove ( aGuard )
) ;
2000-09-18 23:16:46 +00:00
2006-07-10 14:03:37 +00:00
if ( bRet )
2000-09-18 23:16:46 +00:00
{
2001-04-06 09:19:13 +00:00
// check if we are inserting a row
2006-02-06 15:54:07 +00:00
sal_Bool bWasNew = m_pCache - > m_bNew | | rowDeleted ( ) ;
2002-12-05 08:53:00 +00:00
ORowSetNotifier aNotifier ( this ) ;
// this will call cancelRowModification on the cache if necessary
2001-04-06 09:19:13 +00:00
2003-03-19 16:57:12 +00:00
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2001-04-06 09:19:13 +00:00
2006-01-25 14:10:18 +00:00
positionCache ( rows > 0 ? MOVE_FORWARD : MOVE_BACKWARD ) ;
2001-04-06 09:19:13 +00:00
bRet = m_pCache - > relative ( rows ) ;
2006-04-19 12:18:30 +00:00
doCancelModification ( ) ;
2002-12-05 08:53:00 +00:00
2001-04-06 09:19:13 +00:00
if ( bRet )
{
2002-12-05 08:53:00 +00:00
// notification order
// - column values
// - cursorMoved
2006-01-25 14:10:18 +00:00
setCurrentRow ( sal_True , sal_True , aOldValues , aGuard ) ;
2001-04-06 09:19:13 +00:00
}
else
{
2001-07-12 06:56:32 +00:00
movementFailed ( ) ;
2001-04-06 09:19:13 +00:00
}
2000-09-18 23:16:46 +00:00
2002-12-05 08:53:00 +00:00
// - IsModified
// - IsNew
aNotifier . fire ( ) ;
// - RowCount/IsRowCountFinal
2001-04-06 09:19:13 +00:00
fireRowcount ( ) ;
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::relative(%i) = %i Clone = %i " , rows , bRet , m_bClone ) ;
2000-09-18 23:16:46 +00:00
return bRet ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : previous ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::previous " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::previous() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2002-08-13 10:13:00 +00:00
: : osl : : ResettableMutexGuard aGuard ( * m_pMutex ) ;
2000-09-18 23:16:46 +00:00
2001-06-26 09:12:41 +00:00
checkPositioningAllowed ( ) ;
2000-09-29 14:23:36 +00:00
2006-07-10 14:03:37 +00:00
sal_Bool bRet = ! m_bBeforeFirst
& & notifyAllListenersCursorBeforeMove ( aGuard ) ;
2000-09-29 14:23:36 +00:00
2006-07-10 14:03:37 +00:00
if ( bRet )
2000-09-18 23:16:46 +00:00
{
2001-04-06 09:19:13 +00:00
// check if we are inserting a row
2006-02-06 15:54:07 +00:00
sal_Bool bWasNew = m_pCache - > m_bNew | | rowDeleted ( ) ;
2002-12-05 08:53:00 +00:00
ORowSetNotifier aNotifier ( this ) ;
// this will call cancelRowModification on the cache if necessary
2001-04-06 09:19:13 +00:00
2003-03-19 16:57:12 +00:00
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2001-04-06 09:19:13 +00:00
2006-01-25 14:10:18 +00:00
positionCache ( MOVE_BACKWARD ) ;
2001-04-06 09:19:13 +00:00
bRet = m_pCache - > previous ( ) ;
2006-04-19 12:18:30 +00:00
doCancelModification ( ) ;
2002-12-05 08:53:00 +00:00
2001-12-19 14:16:17 +00:00
// if m_bBeforeFirst is false and bRet is false than we stood on the first row
if ( ! m_bBeforeFirst | | bRet )
2002-12-05 08:53:00 +00:00
{
// notification order
// - column values
// - cursorMoved
2006-01-25 14:10:18 +00:00
setCurrentRow ( sal_True , sal_True , aOldValues , aGuard ) ;
2002-12-05 08:53:00 +00:00
}
2001-04-06 09:19:13 +00:00
else
2002-12-05 08:53:00 +00:00
{
2011-02-25 17:47:41 +01:00
OSL_FAIL ( " ORowSetBase::previous: inconsistency! " ) ;
2006-01-25 14:10:18 +00:00
// we should never reach this place, as we should not get into this whole branch if m_bBeforeFirst
// was |true| from the beginning
2001-07-12 06:56:32 +00:00
movementFailed ( ) ;
2002-12-05 08:53:00 +00:00
}
// - IsModified
// - IsNew
aNotifier . fire ( ) ;
2006-01-25 14:10:18 +00:00
// - RowCount/IsRowCountFinal
fireRowcount ( ) ;
2000-11-10 15:05:41 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::previous() = %i Clone = %i " , bRet , m_bClone ) ;
2000-09-18 23:16:46 +00:00
return bRet ;
}
2010-10-12 22:40:56 +02:00
2006-01-25 14:10:18 +00:00
void ORowSetBase : : setCurrentRow ( sal_Bool _bMoved , sal_Bool _bDoNotify , const ORowSetRow & _rOldValues , : : osl : : ResettableMutexGuard & _rGuard )
2001-06-26 09:12:41 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::setCurrentRow " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::setCurrentRow() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-07-12 06:56:32 +00:00
m_bBeforeFirst = m_pCache - > isBeforeFirst ( ) ;
m_bAfterLast = m_pCache - > isAfterLast ( ) ;
if ( ! ( m_bBeforeFirst | | m_bAfterLast ) )
{
m_aBookmark = m_pCache - > getBookmark ( ) ;
2001-08-10 07:11:09 +00:00
OSL_ENSURE ( m_aBookmark . hasValue ( ) , " Bookmark has no value! " ) ;
2001-07-12 06:56:32 +00:00
m_aCurrentRow = m_pCache - > m_aMatrixIter ;
2011-02-23 11:36:11 +01:00
m_bIsInsertRow = sal_False ;
2005-09-05 07:57:38 +00:00
OSL_ENSURE ( ! m_aCurrentRow . isNull ( ) , " CurrentRow is null! " ) ;
2001-07-12 06:56:32 +00:00
m_aCurrentRow . setBookmark ( m_aBookmark ) ;
OSL_ENSURE ( ! m_aCurrentRow . isNull ( ) & & m_aCurrentRow ! = m_pCache - > getEnd ( ) , " Position of matrix iterator isn't valid! " ) ;
2010-10-15 12:22:54 -05:00
OSL_ENSURE ( m_aCurrentRow - > is ( ) , " Currentrow isn't valid " ) ;
2001-11-29 15:35:26 +00:00
OSL_ENSURE ( m_aBookmark . hasValue ( ) , " Bookmark has no value! " ) ;
2001-12-19 14:16:17 +00:00
2006-06-20 01:36:00 +00:00
# if OSL_DEBUG_LEVEL > 0
2003-04-28 14:47:43 +00:00
sal_Int32 nOldRow = m_pCache - > getRow ( ) ;
2006-06-20 01:36:00 +00:00
# endif
2006-01-25 14:10:18 +00:00
positionCache ( MOVE_NONE_REFRESH_ONLY ) ;
2006-06-20 01:36:00 +00:00
# if OSL_DEBUG_LEVEL > 0
2003-04-28 14:47:43 +00:00
sal_Int32 nNewRow = m_pCache - > getRow ( ) ;
2003-06-25 10:02:35 +00:00
OSL_ENSURE ( nOldRow = = nNewRow , " Old position is not equal to new postion " ) ;
2012-01-19 17:54:10 +01:00
# endif
2001-12-19 14:16:17 +00:00
m_aCurrentRow = m_pCache - > m_aMatrixIter ;
2011-02-23 11:36:11 +01:00
m_bIsInsertRow = sal_False ;
2005-09-05 07:57:38 +00:00
OSL_ENSURE ( ! m_aCurrentRow . isNull ( ) , " CurrentRow is nul after positionCache! " ) ;
2006-07-26 06:45:59 +00:00
# if OSL_DEBUG_LEVEL > 0
ORowSetRow rRow = ( * m_aCurrentRow ) ;
2010-10-15 12:22:54 -05:00
OSL_ENSURE ( rRow . is ( ) , " Invalid size of vector! " ) ;
2006-07-26 06:45:59 +00:00
# endif
2002-10-11 10:08:33 +00:00
// the cache could repositioned so we need to adjust the cache
2006-01-25 14:10:18 +00:00
if ( _bMoved & & m_aCurrentRow . isNull ( ) )
2002-10-11 10:08:33 +00:00
{
2006-01-25 14:10:18 +00:00
positionCache ( MOVE_NONE_REFRESH_ONLY ) ;
2002-10-11 10:08:33 +00:00
m_aCurrentRow = m_pCache - > m_aMatrixIter ;
2011-02-23 11:36:11 +01:00
m_bIsInsertRow = sal_False ;
2005-09-05 07:57:38 +00:00
OSL_ENSURE ( ! m_aCurrentRow . isNull ( ) , " CurrentRow is nul after positionCache! " ) ;
2002-10-11 10:08:33 +00:00
}
}
2006-01-25 14:10:18 +00:00
else
{
m_aOldRow - > clearRow ( ) ;
m_aCurrentRow = m_pCache - > getEnd ( ) ;
m_aBookmark = Any ( ) ;
m_aCurrentRow . setBookmark ( m_aBookmark ) ;
}
2001-11-08 14:02:00 +00:00
2002-12-05 08:53:00 +00:00
// notification order
// - column values
2006-01-25 14:10:18 +00:00
if ( _bDoNotify )
firePropertyChange ( _rOldValues ) ;
2001-06-26 09:12:41 +00:00
2002-12-05 08:53:00 +00:00
// TODO: can this be done before the notifications?
2010-10-15 12:22:54 -05:00
if ( ! ( m_bBeforeFirst | | m_bAfterLast ) & & ! m_aCurrentRow . isNull ( ) & & m_aCurrentRow - > is ( ) & & m_aCurrentRow ! = m_pCache - > getEnd ( ) )
m_aOldRow - > setRow ( new ORowSetValueVector ( * ( * m_aCurrentRow ) ) ) ;
2002-12-05 08:53:00 +00:00
2006-01-25 14:10:18 +00:00
if ( _bMoved & & _bDoNotify )
2002-12-05 08:53:00 +00:00
// - cursorMoved
notifyAllListenersCursorMoved ( _rGuard ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::setCurrentRow() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-06-26 09:12:41 +00:00
}
2010-10-12 22:40:56 +02:00
2001-06-26 09:12:41 +00:00
void ORowSetBase : : checkPositioningAllowed ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::checkPositioningAllowed " ) ;
2001-06-26 09:12:41 +00:00
if ( ! m_pCache | | m_nResultSetType = = ResultSetType : : FORWARD_ONLY )
throwFunctionSequenceException ( * m_pMySelf ) ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
Reference < XInterface > ORowSetBase : : getStatement ( void ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getStatement " ) ;
2000-09-18 23:16:46 +00:00
return NULL ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
void SAL_CALL ORowSetBase : : refreshRow ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::refreshRow " ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2006-01-25 14:10:18 +00:00
checkCache ( ) ;
2009-04-23 10:42:05 +00:00
if ( impl_rowDeleted ( ) )
2006-01-25 14:10:18 +00:00
throwSQLException ( " The current row is deleted " , SQL_INVALID_CURSOR_STATE , Reference < XRowSet > ( this ) ) ;
2001-06-26 09:12:41 +00:00
if ( ! ( m_bBeforeFirst | | m_bAfterLast ) )
{
2010-11-26 08:29:58 +01:00
sal_Bool bWasNew = m_pCache - > m_bNew | | impl_rowDeleted ( ) ;
ORowSetRow aOldValues = getOldRow ( bWasNew ) ;
2006-01-25 14:10:18 +00:00
positionCache ( MOVE_NONE_REFRESH_ONLY ) ;
2001-06-26 09:12:41 +00:00
m_pCache - > refreshRow ( ) ;
2010-11-26 08:29:58 +01:00
firePropertyChange ( aOldValues ) ;
2001-06-26 09:12:41 +00:00
}
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : rowUpdated ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::rowUpdated " ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2009-04-23 10:42:05 +00:00
if ( impl_rowDeleted ( ) )
2006-01-25 14:10:18 +00:00
return sal_False ;
2000-09-18 23:16:46 +00:00
return m_pCache - > rowUpdated ( ) ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : rowInserted ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::rowInserted " ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2006-02-06 15:54:07 +00:00
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2009-04-23 10:42:05 +00:00
if ( impl_rowDeleted ( ) )
2006-01-25 14:10:18 +00:00
return sal_False ;
2000-09-18 23:16:46 +00:00
return m_pCache - > rowInserted ( ) ;
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
sal_Bool SAL_CALL ORowSetBase : : rowDeleted ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::rowDeleted " ) ;
2001-11-15 09:42:42 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2001-06-26 09:12:41 +00:00
checkCache ( ) ;
2009-04-23 10:42:05 +00:00
return impl_rowDeleted ( ) ;
}
2010-10-12 22:40:56 +02:00
2009-04-23 10:42:05 +00:00
sal_Bool ORowSetBase : : impl_rowDeleted ( )
{
2006-01-25 14:10:18 +00:00
return ! m_aBookmark . hasValue ( ) & & ! m_bBeforeFirst & & ! m_bAfterLast ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
// XWarningsSupplier
Any SAL_CALL ORowSetBase : : getWarnings ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getWarnings " ) ;
2004-11-17 13:42:24 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
CWS-TOOLING: integrate CWS evoab2def
2009-05-28 16:00:19 +0200 fs r272412 : don't use createFalse - Evo 2.22 simply hangs when ask for all contacts without a first name. Instead, in the WHERE 0=1 case, simply create an empty result set
2009-05-22 14:25:51 +0200 fs r272193 : #i10000#
2009-05-22 14:25:37 +0200 fs r272192 : oops, ENABLE_EVOAB2 for some platforms only, not generically
2009-05-22 14:19:00 +0200 fs r272191 : #i10000#
2009-05-22 12:42:38 +0200 fs r272183 : when sorting, properly use a syslocale collator, instead of comparing the numerical values of the string's UTF-16 code points
2009-05-20 15:09:00 +0200 fs r272131 : clear/getWarnings: also allowed without cache
2009-05-20 14:11:19 +0200 fs r272128 : removed debug traces
2009-05-20 14:03:31 +0200 fs r272126 : #i55701# +STR_SORT_BY_COL_ONLY
2009-05-20 14:02:29 +0200 fs r272125 : implement sorting
2009-05-20 10:10:19 +0200 fs r272107 : #i10000#
2009-05-19 16:02:17 +0200 fs r272089 : #i10000#
2009-05-19 16:02:02 +0200 fs r272088 : #i55701# strings for new error condition DATA_CANNOT_SELECT_UNFILTERED
2009-05-19 16:01:31 +0200 fs r272087 : #i55701# use DATA_CANNOT_SELECT_UNFILTERED as standardized error code
2009-05-19 15:59:59 +0200 fs r272086 : #i55701# +DATA_CANNOT_SELECT_UNFILTERED
2009-05-19 15:46:12 +0200 fs r272084 : #i55701# recognize the DATA_CANNOT_SELECT_UNFILTERED error condition, and allow filtering in this case, even when the result set is empty
2009-05-19 09:06:50 +0200 fs r272059 : merging changes from CWS dba32b, to prevent future conflicts with upcoming local changes
2009-05-18 21:48:58 +0200 fs r272054 : accessing a non-local unfiltered address book now returns an empty result set, and reports a warning, instead of ungracefully failing
2009-05-18 21:48:42 +0200 fs r272053 : accessing a non-local unfiltered address book now returns an empty result set, and reports a warning, instead of ungracefully failing
2009-05-18 21:47:41 +0200 fs r272052 : +setExternalWarnings
2009-05-18 21:47:12 +0200 fs r272051 : #i55701# when re/loading the form, display any possible warnings
2009-05-18 21:43:26 +0200 fs r272050 : #i55701# implement XWarningsSupplier, exposing the warnings of our result set
2009-05-18 21:42:51 +0200 fs r272049 : #i55701# implement XWarningsSupplier, exposing the warnings of our aggregate RowSet
2009-05-18 17:53:59 +0200 fs r272041 : #i55701# moved the (I)WarningsContainer from dbaccess to connectivity, to be able to use it in the latter module, too
2009-05-18 17:24:10 +0200 fs r272040 : #i55701# properly enable the various Evolution types
2009-05-18 14:52:19 +0200 fs r272024 : #i55701# properly enable the Evolution types
2009-05-18 13:57:10 +0200 fs r272018 : fixed/extended whereAnalysis (column searching still not enabled, as neither LIKE nor = seem to work with my (somewhat older) Evolution version)
2009-05-18 13:56:08 +0200 fs r272017 : extended showParseTree
2009-05-18 13:55:25 +0200 fs r272016 : extended showParseTree
2009-05-18 11:40:16 +0200 fs r272008 : #i55701#
2009-05-18 11:39:02 +0200 fs r272006 : let the PreparedStatement return proper meta data, too
2009-05-18 10:05:37 +0200 fs r271999 : moved the XStatement interface to from OCommonStatement to OStatement - the former class is also the base for other classes which should not have this interface
2009-05-15 21:53:22 +0200 fs r271973 : collectColumnInformation: report invalid meta data as assertion
2009-05-15 21:51:40 +0200 fs r271972 : showParseTree should be const
2009-05-15 21:51:26 +0200 fs r271971 : showParseTree should be const
2009-05-15 21:51:03 +0200 fs r271970 : properly recognize the 'WHERE 0 = 1' clause, this way having proper statement meta data, this way saving much much calls from the DBA framework
2009-05-15 20:29:03 +0200 fs r271969 : cleaned up the mess with the statement classes
2009-05-15 15:51:11 +0200 fs r271944 : let the result set properly init its meta data
2009-05-15 15:29:54 +0200 fs r271939 : proper property implementations for the resultset class
2009-05-15 15:01:31 +0200 fs r271936 : proper property implementations for the statement class
2009-05-08 14:46:33 +0200 fs r271717 : component_foo must be PUBLIC
2009-05-06 09:20:05 +0200 fs r271565 : #i10000# (warnings on unxlngi6)
2009-05-06 09:01:30 +0200 fs r271564 : #i101493#
2009-05-05 23:08:12 +0200 fs r271560 : #i55701# merging the changes from the ancient (CVS-based) CWS evoab2default into this CWS here
2009-06-05 12:31:05 +00:00
if ( m_pCache )
{
Reference < XWarningsSupplier > xWarnings ( m_pCache - > m_xSet . get ( ) , UNO_QUERY ) ;
if ( xWarnings . is ( ) )
return xWarnings - > getWarnings ( ) ;
}
2004-11-17 13:42:24 +00:00
2003-04-28 14:47:43 +00:00
return Any ( ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2000-09-18 23:16:46 +00:00
void SAL_CALL ORowSetBase : : clearWarnings ( ) throw ( SQLException , RuntimeException )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::clearWarnings " ) ;
2004-11-17 13:42:24 +00:00
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
CWS-TOOLING: integrate CWS evoab2def
2009-05-28 16:00:19 +0200 fs r272412 : don't use createFalse - Evo 2.22 simply hangs when ask for all contacts without a first name. Instead, in the WHERE 0=1 case, simply create an empty result set
2009-05-22 14:25:51 +0200 fs r272193 : #i10000#
2009-05-22 14:25:37 +0200 fs r272192 : oops, ENABLE_EVOAB2 for some platforms only, not generically
2009-05-22 14:19:00 +0200 fs r272191 : #i10000#
2009-05-22 12:42:38 +0200 fs r272183 : when sorting, properly use a syslocale collator, instead of comparing the numerical values of the string's UTF-16 code points
2009-05-20 15:09:00 +0200 fs r272131 : clear/getWarnings: also allowed without cache
2009-05-20 14:11:19 +0200 fs r272128 : removed debug traces
2009-05-20 14:03:31 +0200 fs r272126 : #i55701# +STR_SORT_BY_COL_ONLY
2009-05-20 14:02:29 +0200 fs r272125 : implement sorting
2009-05-20 10:10:19 +0200 fs r272107 : #i10000#
2009-05-19 16:02:17 +0200 fs r272089 : #i10000#
2009-05-19 16:02:02 +0200 fs r272088 : #i55701# strings for new error condition DATA_CANNOT_SELECT_UNFILTERED
2009-05-19 16:01:31 +0200 fs r272087 : #i55701# use DATA_CANNOT_SELECT_UNFILTERED as standardized error code
2009-05-19 15:59:59 +0200 fs r272086 : #i55701# +DATA_CANNOT_SELECT_UNFILTERED
2009-05-19 15:46:12 +0200 fs r272084 : #i55701# recognize the DATA_CANNOT_SELECT_UNFILTERED error condition, and allow filtering in this case, even when the result set is empty
2009-05-19 09:06:50 +0200 fs r272059 : merging changes from CWS dba32b, to prevent future conflicts with upcoming local changes
2009-05-18 21:48:58 +0200 fs r272054 : accessing a non-local unfiltered address book now returns an empty result set, and reports a warning, instead of ungracefully failing
2009-05-18 21:48:42 +0200 fs r272053 : accessing a non-local unfiltered address book now returns an empty result set, and reports a warning, instead of ungracefully failing
2009-05-18 21:47:41 +0200 fs r272052 : +setExternalWarnings
2009-05-18 21:47:12 +0200 fs r272051 : #i55701# when re/loading the form, display any possible warnings
2009-05-18 21:43:26 +0200 fs r272050 : #i55701# implement XWarningsSupplier, exposing the warnings of our result set
2009-05-18 21:42:51 +0200 fs r272049 : #i55701# implement XWarningsSupplier, exposing the warnings of our aggregate RowSet
2009-05-18 17:53:59 +0200 fs r272041 : #i55701# moved the (I)WarningsContainer from dbaccess to connectivity, to be able to use it in the latter module, too
2009-05-18 17:24:10 +0200 fs r272040 : #i55701# properly enable the various Evolution types
2009-05-18 14:52:19 +0200 fs r272024 : #i55701# properly enable the Evolution types
2009-05-18 13:57:10 +0200 fs r272018 : fixed/extended whereAnalysis (column searching still not enabled, as neither LIKE nor = seem to work with my (somewhat older) Evolution version)
2009-05-18 13:56:08 +0200 fs r272017 : extended showParseTree
2009-05-18 13:55:25 +0200 fs r272016 : extended showParseTree
2009-05-18 11:40:16 +0200 fs r272008 : #i55701#
2009-05-18 11:39:02 +0200 fs r272006 : let the PreparedStatement return proper meta data, too
2009-05-18 10:05:37 +0200 fs r271999 : moved the XStatement interface to from OCommonStatement to OStatement - the former class is also the base for other classes which should not have this interface
2009-05-15 21:53:22 +0200 fs r271973 : collectColumnInformation: report invalid meta data as assertion
2009-05-15 21:51:40 +0200 fs r271972 : showParseTree should be const
2009-05-15 21:51:26 +0200 fs r271971 : showParseTree should be const
2009-05-15 21:51:03 +0200 fs r271970 : properly recognize the 'WHERE 0 = 1' clause, this way having proper statement meta data, this way saving much much calls from the DBA framework
2009-05-15 20:29:03 +0200 fs r271969 : cleaned up the mess with the statement classes
2009-05-15 15:51:11 +0200 fs r271944 : let the result set properly init its meta data
2009-05-15 15:29:54 +0200 fs r271939 : proper property implementations for the resultset class
2009-05-15 15:01:31 +0200 fs r271936 : proper property implementations for the statement class
2009-05-08 14:46:33 +0200 fs r271717 : component_foo must be PUBLIC
2009-05-06 09:20:05 +0200 fs r271565 : #i10000# (warnings on unxlngi6)
2009-05-06 09:01:30 +0200 fs r271564 : #i101493#
2009-05-05 23:08:12 +0200 fs r271560 : #i55701# merging the changes from the ancient (CVS-based) CWS evoab2default into this CWS here
2009-06-05 12:31:05 +00:00
if ( m_pCache )
{
Reference < XWarningsSupplier > xWarnings ( m_pCache - > m_xSet . get ( ) , UNO_QUERY ) ;
if ( xWarnings . is ( ) )
xWarnings - > clearWarnings ( ) ;
}
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2002-12-05 13:10:11 +00:00
void ORowSetBase : : firePropertyChange ( const ORowSetRow & _rOldRow )
2000-09-18 23:16:46 +00:00
{
2010-10-01 22:29:22 -04:00
if ( ! isPropertyChangeNotificationEnabled ( ) )
return ;
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::firePropertyChange " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::firePropertyChange() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-07-12 06:56:32 +00:00
OSL_ENSURE ( m_pColumns , " Columns can not be NULL here! " ) ;
2000-10-17 09:19:03 +00:00
sal_Int32 i = 0 ;
try
2000-09-18 23:16:46 +00:00
{
2009-07-03 12:24:35 +00:00
TDataColumns : : iterator aEnd = m_aDataColumns . end ( ) ;
2011-02-07 20:20:28 +01:00
for ( TDataColumns : : iterator aIter = m_aDataColumns . begin ( ) ; aIter ! = aEnd ; + + aIter , + + i )
2010-10-15 12:22:54 -05:00
( * aIter ) - > fireValueChange ( _rOldRow . is ( ) ? ( _rOldRow - > get ( ) ) [ i + 1 ] : : : connectivity : : ORowSetValue ( ) ) ;
2000-09-18 23:16:46 +00:00
}
2011-08-29 16:00:40 +01:00
catch ( const Exception & )
2000-10-17 09:19:03 +00:00
{
2011-03-12 12:04:35 +01:00
OSL_FAIL ( " firePropertyChange: Exception " ) ;
2000-10-17 09:19:03 +00:00
}
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::firePropertyChange() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2000-09-18 23:16:46 +00:00
}
2010-10-12 22:40:56 +02:00
2010-02-15 09:53:53 +01:00
void ORowSetBase : : firePropertyChange ( sal_Int32 _nPos , const : : connectivity : : ORowSetValue & _rOldValue )
{
OSL_ENSURE ( _nPos < ( sal_Int32 ) m_aDataColumns . size ( ) , " nPos is invalid! " ) ;
m_aDataColumns [ _nPos ] - > fireValueChange ( _rOldValue ) ;
}
2010-10-12 22:40:56 +02:00
2006-06-20 01:36:00 +00:00
void ORowSetBase : : fireRowcount ( )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::fireRowcount " ) ;
2006-06-20 01:36:00 +00:00
}
sal_Bool ORowSetBase : : notifyAllListenersCursorBeforeMove ( : : osl : : ResettableMutexGuard & /*_rGuard*/ )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::notifyAllListenersCursorBeforeMove " ) ;
2006-06-20 01:36:00 +00:00
return sal_True ;
}
void ORowSetBase : : notifyAllListenersCursorMoved ( : : osl : : ResettableMutexGuard & /*_rGuard*/ )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::notifyAllListenersCursorMoved " ) ;
2006-06-20 01:36:00 +00:00
}
void ORowSetBase : : notifyAllListeners ( : : osl : : ResettableMutexGuard & /*_rGuard*/ )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::notifyAllListeners " ) ;
2006-06-20 01:36:00 +00:00
}
2010-10-01 22:29:22 -04:00
sal_Bool ORowSetBase : : isPropertyChangeNotificationEnabled ( ) const
{
return sal_True ;
}
2002-12-05 08:53:00 +00:00
void ORowSetBase : : fireProperty ( sal_Int32 _nProperty , sal_Bool _bNew , sal_Bool _bOld )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::fireProperty " ) ;
2002-12-05 08:53:00 +00:00
Any aNew = bool2any ( _bNew ) ;
Any aOld = bool2any ( _bOld ) ;
fire ( & _nProperty , & aNew , & aOld , 1 , sal_False ) ;
}
2006-01-25 14:10:18 +00:00
void ORowSetBase : : positionCache ( CursorMoveDirection _ePrepareForDirection )
2001-06-22 12:08:06 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::positionCache " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::positionCache() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2006-01-25 14:10:18 +00:00
sal_Bool bSuccess = sal_False ;
if ( m_aBookmark . hasValue ( ) )
2001-06-22 12:08:06 +00:00
{
2006-01-25 14:10:18 +00:00
bSuccess = m_pCache - > moveToBookmark ( m_aBookmark ) ;
2001-06-22 12:08:06 +00:00
}
else
2006-01-25 14:10:18 +00:00
{
if ( m_bBeforeFirst )
{
bSuccess = m_pCache - > beforeFirst ( ) ;
}
else if ( m_bAfterLast )
{
bSuccess = m_pCache - > afterLast ( ) ;
}
else
{
OSL_ENSURE ( m_nDeletedPosition > = 1 , " ORowSetBase::positionCache: no bookmark, and no valid 'deleted position'! " ) ;
switch ( _ePrepareForDirection )
{
case MOVE_FORWARD :
if ( m_nDeletedPosition > 1 )
bSuccess = m_pCache - > absolute ( m_nDeletedPosition - 1 ) ;
else
{
m_pCache - > beforeFirst ( ) ;
bSuccess = sal_True ;
}
break ;
case MOVE_BACKWARD :
if ( m_pCache - > m_bRowCountFinal & & ( m_nDeletedPosition = = impl_getRowCount ( ) ) )
{
m_pCache - > afterLast ( ) ;
bSuccess = sal_True ;
}
else
bSuccess = m_pCache - > absolute ( m_nDeletedPosition ) ;
break ;
case MOVE_NONE_REFRESH_ONLY :
bSuccess = sal_False ; // will be asserted below
break ;
}
}
}
OSL_ENSURE ( bSuccess , " ORowSetBase::positionCache: failed! " ) ;
2011-01-28 09:17:32 +00:00
( void ) bSuccess ;
2006-01-25 14:10:18 +00:00
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::positionCache() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-06-22 12:08:06 +00:00
}
2010-10-12 22:40:56 +02:00
2001-06-26 09:12:41 +00:00
void ORowSetBase : : checkCache ( )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::checkCache " ) ;
2001-06-26 09:12:41 +00:00
: : connectivity : : checkDisposed ( m_rBHelper . bDisposed ) ;
if ( ! m_pCache )
throwFunctionSequenceException ( * m_pMySelf ) ;
}
2010-10-12 22:40:56 +02:00
2001-07-12 06:56:32 +00:00
void ORowSetBase : : movementFailed ( )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::movementFailed " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::movementFailed() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2003-03-19 16:57:12 +00:00
m_aOldRow - > clearRow ( ) ;
2001-07-12 06:56:32 +00:00
m_aCurrentRow = m_pCache - > getEnd ( ) ;
m_bBeforeFirst = m_pCache - > isBeforeFirst ( ) ;
m_bAfterLast = m_pCache - > isAfterLast ( ) ;
m_aBookmark = Any ( ) ;
m_aCurrentRow . setBookmark ( m_aBookmark ) ;
2001-08-24 05:40:35 +00:00
OSL_ENSURE ( m_bBeforeFirst | | m_bAfterLast , " BeforeFirst or AfterLast is wrong! " ) ;
2011-09-20 10:18:12 +02:00
OSL_TRACE ( " DBACCESS ORowSetBase::movementFailed() Clone = %i ID = %i " , m_bClone , osl_getThreadIdentifier ( NULL ) ) ;
2001-07-12 06:56:32 +00:00
}
2010-10-12 22:40:56 +02:00
2003-03-19 16:57:12 +00:00
ORowSetRow ORowSetBase : : getOldRow ( sal_Bool _bWasNew )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getOldRow " ) ;
2010-10-15 12:22:54 -05:00
OSL_ENSURE ( m_aOldRow . is ( ) , " RowSetRowHElper isn't valid! " ) ;
2003-03-19 16:57:12 +00:00
ORowSetRow aOldValues ;
2010-10-15 12:22:54 -05:00
if ( ! _bWasNew & & m_aOldRow - > getRow ( ) . is ( ) )
aOldValues = new ORowSetValueVector ( * ( m_aOldRow - > getRow ( ) ) ) ; // remember the old values
2003-03-19 16:57:12 +00:00
return aOldValues ;
}
2010-10-12 22:40:56 +02:00
2006-08-15 09:41:56 +00:00
void ORowSetBase : : getPropertyDefaultByHandle ( sal_Int32 /*_nHandle*/ , Any & _rDefault ) const
2004-08-02 14:00:45 +00:00
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::getPropertyDefaultByHandle " ) ;
2006-08-15 09:41:56 +00:00
_rDefault . clear ( ) ;
2004-08-02 14:00:45 +00:00
}
2010-10-12 22:40:56 +02:00
2006-01-25 14:10:18 +00:00
void ORowSetBase : : onDeleteRow ( const Any & _rBookmark )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::onDeleteRow " ) ;
2006-01-25 14:10:18 +00:00
if ( rowDeleted ( ) )
// not interested in
return ;
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
2009-02-17 15:39:54 +00:00
//OSL_ENSURE( m_aBookmark.hasValue(), "ORowSetBase::onDeleteRow: Bookmark isn't valid!" );
2006-01-25 14:10:18 +00:00
if ( compareBookmarks ( _rBookmark , m_aBookmark ) = = 0 )
{
positionCache ( MOVE_NONE_REFRESH_ONLY ) ;
m_nDeletedPosition = m_pCache - > getRow ( ) ;
}
}
2010-10-12 22:40:56 +02:00
2006-01-25 14:10:18 +00:00
void ORowSetBase : : onDeletedRow ( const Any & _rBookmark , sal_Int32 _nPos )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::onDeletedRow " ) ;
2006-01-25 14:10:18 +00:00
if ( rowDeleted ( ) )
{
// if we're a clone, and on a deleted row, and the main RowSet deleted another
// row (only the main RowSet can, clones can't), which is *before* our
// deleted position, then we have to adjust this position
if ( m_bClone & & ( _nPos < m_nDeletedPosition ) )
- - m_nDeletedPosition ;
return ;
}
: : osl : : MutexGuard aGuard ( * m_pMutex ) ;
if ( compareBookmarks ( _rBookmark , m_aBookmark ) = = 0 )
{
m_aOldRow - > clearRow ( ) ;
m_aCurrentRow = m_pCache - > getEnd ( ) ;
m_aBookmark = Any ( ) ;
m_aCurrentRow . setBookmark ( m_aBookmark ) ;
}
}
2010-10-12 22:40:56 +02:00
2006-01-25 14:10:18 +00:00
sal_Int32 ORowSetBase : : impl_getRowCount ( ) const
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetBase::impl_getRowCount " ) ;
2006-01-25 14:10:18 +00:00
sal_Int32 nRowCount ( m_pCache - > m_nRowCount ) ;
2006-02-06 15:54:07 +00:00
if ( const_cast < ORowSetBase * > ( this ) - > rowDeleted ( ) & & ! m_pCache - > m_bNew )
2006-01-25 14:10:18 +00:00
+ + nRowCount ;
return nRowCount ;
}
2002-12-05 08:53:00 +00:00
// =============================================================================
2010-02-15 09:53:53 +01:00
struct ORowSetNotifierImpl
{
: : std : : vector < sal_Int32 > aChangedColumns ;
: : std : : vector < Any > aChangedBookmarks ;
ORowSetValueVector : : Vector aRow ;
} ;
2005-09-23 11:03:10 +00:00
DBG_NAME ( ORowSetNotifier )
2010-10-12 22:40:56 +02:00
2002-12-05 08:53:00 +00:00
ORowSetNotifier : : ORowSetNotifier ( ORowSetBase * _pRowSet )
: m_pRowSet ( _pRowSet )
, m_bWasNew ( sal_False )
, m_bWasModified ( sal_False )
# ifdef DBG_UTIL
, m_bNotifyCalled ( sal_False )
# endif
{
2005-09-23 11:03:10 +00:00
DBG_CTOR ( ORowSetNotifier , NULL ) ;
2002-12-05 08:53:00 +00:00
OSL_ENSURE ( m_pRowSet , " ORowSetNotifier::ORowSetNotifier: invalid row set. This wil crash. " ) ;
// remember the "inserted" and "modified" state for later firing
2006-01-25 12:43:05 +00:00
m_bWasNew = m_pRowSet - > isNew ( ORowSetBase : : GrantNotifierAccess ( ) ) ;
2002-12-05 08:53:00 +00:00
m_bWasModified = m_pRowSet - > isModified ( ORowSetBase : : GrantNotifierAccess ( ) ) ;
// if the row set is on the insert row, then we need to cancel this
if ( m_pRowSet - > isModification ( ORowSetBase : : GrantNotifierAccess ( ) ) )
m_pRowSet - > doCancelModification ( ORowSetBase : : GrantNotifierAccess ( ) ) ;
}
2010-10-12 22:40:56 +02:00
2010-02-15 09:53:53 +01:00
ORowSetNotifier : : ORowSetNotifier ( ORowSetBase * _pRowSet , const ORowSetValueVector : : Vector & i_aRow )
: m_pImpl ( new ORowSetNotifierImpl )
, m_pRowSet ( _pRowSet )
, m_bWasNew ( sal_False )
, m_bWasModified ( sal_False )
# ifdef DBG_UTIL
, m_bNotifyCalled ( sal_False )
# endif
{
DBG_CTOR ( ORowSetNotifier , NULL ) ;
2002-12-05 08:53:00 +00:00
2010-02-15 09:53:53 +01:00
OSL_ENSURE ( m_pRowSet , " ORowSetNotifier::ORowSetNotifier: invalid row set. This wil crash. " ) ;
m_pImpl - > aRow = i_aRow ; // yes, create a copy to store the old values
}
2010-10-12 22:40:56 +02:00
2002-12-05 08:53:00 +00:00
ORowSetNotifier : : ~ ORowSetNotifier ( )
{
2009-04-23 10:42:05 +00:00
RTL_LOGFILE_CONTEXT_AUTHOR ( aLogger , " dbaccess " , " Ocke.Janssen@sun.com " , " ORowSetNotifier::~ORowSetNotifier " ) ;
2005-09-23 11:03:10 +00:00
DBG_DTOR ( ORowSetNotifier , NULL ) ;
2002-12-05 08:53:00 +00:00
}
void ORowSetNotifier : : fire ( )
{
// we're not interested in firing changes FALSE->TRUE, only TRUE->FALSE.
// (the former would be quite pathological, e.g. after a failed movement)
if ( m_bWasModified
& & ( m_bWasModified ! = m_pRowSet - > isModified ( ORowSetBase : : GrantNotifierAccess ( ) ) )
)
m_pRowSet - > fireProperty ( PROPERTY_ID_ISMODIFIED , sal_False , sal_True , ORowSetBase : : GrantNotifierAccess ( ) ) ;
if ( m_bWasNew
& & ( m_bWasNew ! = m_pRowSet - > isNew ( ORowSetBase : : GrantNotifierAccess ( ) ) )
)
m_pRowSet - > fireProperty ( PROPERTY_ID_ISNEW , sal_False , sal_True , ORowSetBase : : GrantNotifierAccess ( ) ) ;
# ifdef DBG_UTIL
m_bNotifyCalled = sal_True ;
# endif
}
2010-10-12 22:40:56 +02:00
2010-02-15 09:53:53 +01:00
: : std : : vector < sal_Int32 > & ORowSetNotifier : : getChangedColumns ( ) const
{
OSL_ENSURE ( m_pImpl . get ( ) , " Illegal CTor call, use the other one! " ) ;
return m_pImpl - > aChangedColumns ;
}
2010-10-12 22:40:56 +02:00
2010-02-15 09:53:53 +01:00
void ORowSetNotifier : : firePropertyChange ( )
{
OSL_ENSURE ( m_pImpl . get ( ) , " Illegal CTor call, use the other one! " ) ;
if ( m_pImpl . get ( ) )
{
: : std : : vector < sal_Int32 > : : iterator aIter = m_pImpl - > aChangedColumns . begin ( ) ;
for ( ; aIter ! = m_pImpl - > aChangedColumns . end ( ) ; + + aIter )
{
m_pRowSet - > firePropertyChange ( ( * aIter ) - 1 , m_pImpl - > aRow [ ( * aIter ) - 1 ] , ORowSetBase : : GrantNotifierAccess ( ) ) ;
}
2011-02-23 11:36:11 +01:00
if ( ! m_pImpl - > aChangedColumns . empty ( ) )
m_pRowSet - > fireProperty ( PROPERTY_ID_ISMODIFIED , sal_True , sal_False , ORowSetBase : : GrantNotifierAccess ( ) ) ;
2010-02-15 09:53:53 +01:00
}
}
2001-01-24 10:02:14 +00:00
} // namespace dbaccess
2010-10-12 15:59:03 +02:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */