Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
9bffdc92
Kaydet (Commit)
9bffdc92
authored
Mar 07, 2011
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move DBG_TRACE2 to OSL_TRACE
üst
f71ad82e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
32 deletions
+32
-32
RowSetBase.cxx
dbaccess/source/core/api/RowSetBase.cxx
+32
-32
No files found.
dbaccess/source/core/api/RowSetBase.cxx
Dosyayı görüntüle @
9bffdc92
...
...
@@ -453,7 +453,7 @@ Reference< XArray > SAL_CALL ORowSetBase::getArray( sal_Int32 /*columnIndex*/ )
Any
SAL_CALL
ORowSetBase
::
getBookmark
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::getBookmark"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::getBookmark() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::getBookmark() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
MutexGuard
aGuard
(
*
m_pMutex
);
checkCache
();
...
...
@@ -471,7 +471,7 @@ Any SAL_CALL ORowSetBase::getBookmark( ) throw(SQLException, RuntimeException)
sal_Bool
SAL_CALL
ORowSetBase
::
moveToBookmark
(
const
Any
&
bookmark
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::moveToBookmark"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::moveToBookmark(Any) Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::moveToBookmark(Any) Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_ENSURE
(
bookmark
.
hasValue
(),
"ORowSetBase::moveToBookmark bookmark has no value!"
);
::
osl
::
ResettableMutexGuard
aGuard
(
*
m_pMutex
);
...
...
@@ -516,14 +516,14 @@ sal_Bool SAL_CALL ORowSetBase::moveToBookmark( const Any& bookmark ) throw(SQLEx
// - IsNew
aNotifier
.
fire
(
);
}
DBG_TRACE2
(
"DBACCESS ORowSetBase::moveToBookmark(Any) = %i Clone = %i
\n
"
,
bRet
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::moveToBookmark(Any) = %i Clone = %i
\n
"
,
bRet
,
m_bClone
);
return
bRet
;
}
sal_Bool
SAL_CALL
ORowSetBase
::
moveRelativeToBookmark
(
const
Any
&
bookmark
,
sal_Int32
rows
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::moveRelativeToBookmark"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::moveRelativeToBookmark(Any,%i) Clone = %i
\n
"
,
rows
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::moveRelativeToBookmark(Any,%i) Clone = %i
\n
"
,
rows
,
m_bClone
);
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
ResettableMutexGuard
aGuard
(
*
m_pMutex
);
...
...
@@ -633,7 +633,7 @@ Reference< XNameAccess > SAL_CALL ORowSetBase::getColumns( ) throw(RuntimeExcep
sal_Bool
SAL_CALL
ORowSetBase
::
next
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::next"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::next() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::next() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
osl
::
ResettableMutexGuard
aGuard
(
*
m_pMutex
);
checkCache
();
...
...
@@ -686,7 +686,7 @@ sal_Bool SAL_CALL ORowSetBase::isBeforeFirst( ) throw(SQLException, RuntimeExce
::
osl
::
MutexGuard
aGuard
(
*
m_pMutex
);
checkCache
();
DBG_TRACE2
(
"DBACCESS ORowSetBase::isBeforeFirst() = %i Clone = %i
\n
"
,
m_bBeforeFirst
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::isBeforeFirst() = %i Clone = %i
\n
"
,
m_bBeforeFirst
,
m_bClone
);
return
m_bBeforeFirst
;
}
...
...
@@ -697,7 +697,7 @@ sal_Bool SAL_CALL ORowSetBase::isAfterLast( ) throw(SQLException, RuntimeExcept
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
MutexGuard
aGuard
(
*
m_pMutex
);
checkCache
();
DBG_TRACE2
(
"DBACCESS ORowSetBase::isAfterLast() = %i Clone = %i
\n
"
,
m_bAfterLast
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::isAfterLast() = %i Clone = %i
\n
"
,
m_bAfterLast
,
m_bClone
);
return
m_bAfterLast
;
}
...
...
@@ -711,7 +711,7 @@ sal_Bool ORowSetBase::isOnFirst()
sal_Bool
SAL_CALL
ORowSetBase
::
isFirst
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::isFirst"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::isFirst() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::isFirst() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
MutexGuard
aGuard
(
*
m_pMutex
);
...
...
@@ -726,7 +726,7 @@ sal_Bool SAL_CALL ORowSetBase::isFirst( ) throw(SQLException, RuntimeException)
positionCache
(
MOVE_NONE_REFRESH_ONLY
);
sal_Bool
bIsFirst
=
m_pCache
->
isFirst
();
DBG_TRACE2
(
"DBACCESS ORowSetBase::isFirst() = %i Clone = %i
\n
"
,
bIsFirst
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::isFirst() = %i Clone = %i
\n
"
,
bIsFirst
,
m_bClone
);
return
bIsFirst
;
}
...
...
@@ -739,7 +739,7 @@ sal_Bool ORowSetBase::isOnLast()
sal_Bool
SAL_CALL
ORowSetBase
::
isLast
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::isLast"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::isLast() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::isLast() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
MutexGuard
aGuard
(
*
m_pMutex
);
checkCache
();
...
...
@@ -758,14 +758,14 @@ sal_Bool SAL_CALL ORowSetBase::isLast( ) throw(SQLException, RuntimeException)
positionCache
(
MOVE_NONE_REFRESH_ONLY
);
sal_Bool
bIsLast
=
m_pCache
->
isLast
();
DBG_TRACE2
(
"DBACCESS ORowSetBase::isLast() = %i Clone = %i
\n
"
,
bIsLast
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::isLast() = %i Clone = %i
\n
"
,
bIsLast
,
m_bClone
);
return
bIsLast
;
}
void
SAL_CALL
ORowSetBase
::
beforeFirst
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::beforeFirst"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::beforeFirst() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::beforeFirst() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
ResettableMutexGuard
aGuard
(
*
m_pMutex
);
...
...
@@ -801,13 +801,13 @@ void SAL_CALL ORowSetBase::beforeFirst( ) throw(SQLException, RuntimeException)
// to be done _after_ the notifications!
m_aOldRow
->
clearRow
();
}
DBG_TRACE2
(
"DBACCESS ORowSetBase::beforeFirst() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::beforeFirst() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
}
void
SAL_CALL
ORowSetBase
::
afterLast
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::afterLast"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::afterLast() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::afterLast() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
ResettableMutexGuard
aGuard
(
*
m_pMutex
);
...
...
@@ -841,14 +841,14 @@ void SAL_CALL ORowSetBase::afterLast( ) throw(SQLException, RuntimeException)
fireRowcount
();
}
}
DBG_TRACE2
(
"DBACCESS ORowSetBase::afterLast() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::afterLast() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
}
sal_Bool
SAL_CALL
ORowSetBase
::
move
(
::
std
::
mem_fun_t
<
sal_Bool
,
ORowSetBase
>&
_aCheckFunctor
,
::
std
::
mem_fun_t
<
sal_Bool
,
ORowSetCache
>&
_aMovementFunctor
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::move"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::move() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::move() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
ResettableMutexGuard
aGuard
(
*
m_pMutex
);
checkPositioningAllowed
();
...
...
@@ -888,14 +888,14 @@ sal_Bool SAL_CALL ORowSetBase::move( ::std::mem_fun_t<sal_Bool,ORowSetBase>&
// - RowCount/IsRowCountFinal
fireRowcount
();
}
DBG_TRACE2
(
"DBACCESS ORowSetBase::move() = %i Clone = %i
\n
"
,
bRet
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::move() = %i Clone = %i
\n
"
,
bRet
,
m_bClone
);
return
bRet
;
}
sal_Bool
SAL_CALL
ORowSetBase
::
first
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::first"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::first() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::first() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
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
);
...
...
@@ -904,7 +904,7 @@ sal_Bool SAL_CALL ORowSetBase::first( ) throw(SQLException, RuntimeException)
sal_Bool
SAL_CALL
ORowSetBase
::
last
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::last"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::last() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::last() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
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
);
...
...
@@ -913,7 +913,7 @@ sal_Bool SAL_CALL ORowSetBase::last( ) throw(SQLException, RuntimeException)
sal_Int32
SAL_CALL
ORowSetBase
::
getRow
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::getRow"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::getRow() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::getRow() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
osl
::
MutexGuard
aGuard
(
*
m_pMutex
);
checkCache
();
...
...
@@ -950,7 +950,7 @@ sal_Int32 ORowSetBase::impl_getRow()
sal_Bool
SAL_CALL
ORowSetBase
::
absolute
(
sal_Int32
row
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::absolute"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::absolute(%i) Clone = %i
\n
"
,
row
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::absolute(%i) Clone = %i
\n
"
,
row
,
m_bClone
);
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
ResettableMutexGuard
aGuard
(
*
m_pMutex
);
checkPositioningAllowed
();
...
...
@@ -996,7 +996,7 @@ sal_Bool SAL_CALL ORowSetBase::absolute( sal_Int32 row ) throw(SQLException, Run
sal_Bool
SAL_CALL
ORowSetBase
::
relative
(
sal_Int32
rows
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::relative"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::relative(%i) Clone = %i
\n
"
,
rows
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::relative(%i) Clone = %i
\n
"
,
rows
,
m_bClone
);
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
ResettableMutexGuard
aGuard
(
*
m_pMutex
);
...
...
@@ -1052,7 +1052,7 @@ sal_Bool SAL_CALL ORowSetBase::relative( sal_Int32 rows ) throw(SQLException, Ru
sal_Bool
SAL_CALL
ORowSetBase
::
previous
(
)
throw
(
SQLException
,
RuntimeException
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::previous"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::previous() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::previous() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
::
connectivity
::
checkDisposed
(
m_rBHelper
.
bDisposed
);
::
osl
::
ResettableMutexGuard
aGuard
(
*
m_pMutex
);
...
...
@@ -1098,14 +1098,14 @@ sal_Bool SAL_CALL ORowSetBase::previous( ) throw(SQLException, RuntimeException
// - RowCount/IsRowCountFinal
fireRowcount
();
}
DBG_TRACE2
(
"DBACCESS ORowSetBase::previous() = %i Clone = %i
\n
"
,
bRet
,
m_bClone
);
OSL_TRACE
(
"DBACCESS ORowSetBase::previous() = %i Clone = %i
\n
"
,
bRet
,
m_bClone
);
return
bRet
;
}
void
ORowSetBase
::
setCurrentRow
(
sal_Bool
_bMoved
,
sal_Bool
_bDoNotify
,
const
ORowSetRow
&
_rOldValues
,
::
osl
::
ResettableMutexGuard
&
_rGuard
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::setCurrentRow"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::setCurrentRow() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::setCurrentRow() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
m_bBeforeFirst
=
m_pCache
->
isBeforeFirst
();
m_bAfterLast
=
m_pCache
->
isAfterLast
();
...
...
@@ -1163,7 +1163,7 @@ void ORowSetBase::setCurrentRow( sal_Bool _bMoved, sal_Bool _bDoNotify, const OR
// - cursorMoved
notifyAllListenersCursorMoved
(
_rGuard
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::setCurrentRow() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::setCurrentRow() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
}
void
ORowSetBase
::
checkPositioningAllowed
()
throw
(
SQLException
,
RuntimeException
)
...
...
@@ -1268,7 +1268,7 @@ void ORowSetBase::firePropertyChange(const ORowSetRow& _rOldRow)
return
;
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::firePropertyChange"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::firePropertyChange() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::firePropertyChange() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_ENSURE
(
m_pColumns
,
"Columns can not be NULL here!"
);
#if OSL_DEBUG_LEVEL > 1
sal_Bool
bNull
;
...
...
@@ -1287,7 +1287,7 @@ void ORowSetBase::firePropertyChange(const ORowSetRow& _rOldRow)
{
OSL_ENSURE
(
0
,
"firePropertyChange: Exception"
);
}
DBG_TRACE2
(
"DBACCESS ORowSetBase::firePropertyChange() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::firePropertyChange() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
}
void
ORowSetBase
::
firePropertyChange
(
sal_Int32
_nPos
,
const
::
connectivity
::
ORowSetValue
&
_rOldValue
)
...
...
@@ -1333,7 +1333,7 @@ void ORowSetBase::fireProperty( sal_Int32 _nProperty, sal_Bool _bNew, sal_Bool _
void
ORowSetBase
::
positionCache
(
CursorMoveDirection
_ePrepareForDirection
)
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::positionCache"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::positionCache() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::positionCache() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
sal_Bool
bSuccess
=
sal_False
;
if
(
m_aBookmark
.
hasValue
()
)
...
...
@@ -1384,7 +1384,7 @@ void ORowSetBase::positionCache( CursorMoveDirection _ePrepareForDirection )
OSL_ENSURE
(
bSuccess
,
"ORowSetBase::positionCache: failed!"
);
(
void
)
bSuccess
;
DBG_TRACE2
(
"DBACCESS ORowSetBase::positionCache() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::positionCache() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
}
void
ORowSetBase
::
checkCache
()
...
...
@@ -1398,7 +1398,7 @@ void ORowSetBase::checkCache()
void
ORowSetBase
::
movementFailed
()
{
RTL_LOGFILE_CONTEXT_AUTHOR
(
aLogger
,
"dbaccess"
,
"Ocke.Janssen@sun.com"
,
"ORowSetBase::movementFailed"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::movementFailed() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::movementFailed() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
m_aOldRow
->
clearRow
();
m_aCurrentRow
=
m_pCache
->
getEnd
();
m_bBeforeFirst
=
m_pCache
->
isBeforeFirst
();
...
...
@@ -1406,7 +1406,7 @@ void ORowSetBase::movementFailed()
m_aBookmark
=
Any
();
m_aCurrentRow
.
setBookmark
(
m_aBookmark
);
OSL_ENSURE
(
m_bBeforeFirst
||
m_bAfterLast
,
"BeforeFirst or AfterLast is wrong!"
);
DBG_TRACE2
(
"DBACCESS ORowSetBase::movementFailed() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
OSL_TRACE
(
"DBACCESS ORowSetBase::movementFailed() Clone = %i ID = %i
\n
"
,
m_bClone
,
osl_getThreadIdentifier
(
NULL
));
}
ORowSetRow
ORowSetBase
::
getOldRow
(
sal_Bool
_bWasNew
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment