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
72f60713
Kaydet (Commit)
72f60713
authored
May 14, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
connectivity: remove SAL_INFO's that only mark function entry
Change-Id: If6863d18dac6ee0364c98d255e0cf55748ea4bf9
üst
9a9bde50
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
14 deletions
+0
-14
MPreparedStatement.cxx
connectivity/source/drivers/mork/MPreparedStatement.cxx
+0
-9
MResultSet.cxx
connectivity/source/drivers/mork/MResultSet.cxx
+0
-5
No files found.
connectivity/source/drivers/mork/MPreparedStatement.cxx
Dosyayı görüntüle @
72f60713
...
...
@@ -81,8 +81,6 @@ void SAL_CALL OPreparedStatement::disposing()
OCommonStatement
::
StatementType
OPreparedStatement
::
parseSql
(
const
OUString
&
sql
,
sal_Bool
bAdjusted
)
throw
(
::
com
::
sun
::
star
::
sdbc
::
SQLException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
)
{
SAL_INFO
(
"connectivity.mork"
,
"=> OPreparedStatement::parseSql()"
);
StatementType
eStatementType
=
OCommonStatement
::
parseSql
(
sql
,
bAdjusted
);
if
(
eStatementType
!=
eSelect
)
return
eStatementType
;
...
...
@@ -148,8 +146,6 @@ Any SAL_CALL OPreparedStatement::queryInterface( const Type & rType ) throw(Runt
Reference
<
XResultSetMetaData
>
SAL_CALL
OPreparedStatement
::
getMetaData
(
)
throw
(
SQLException
,
RuntimeException
,
std
::
exception
)
{
SAL_INFO
(
"connectivity.mork"
,
"=> OPreparedStatement::getMetaData()"
);
::
osl
::
MutexGuard
aGuard
(
m_aMutex
);
checkDisposed
(
OCommonStatement_IBASE
::
rBHelper
.
bDisposed
);
...
...
@@ -168,7 +164,6 @@ Reference< XResultSetMetaData > SAL_CALL OPreparedStatement::getMetaData( ) thr
sal_Bool
SAL_CALL
OPreparedStatement
::
execute
(
)
throw
(
SQLException
,
RuntimeException
,
std
::
exception
)
{
SAL_INFO
(
"connectivity.mork"
,
"=> OPreparedStatement::execute()"
);
::
osl
::
MutexGuard
aGuard
(
m_aMutex
);
checkDisposed
(
OCommonStatement_IBASE
::
rBHelper
.
bDisposed
);
...
...
@@ -179,8 +174,6 @@ sal_Bool SAL_CALL OPreparedStatement::execute( ) throw(SQLException, RuntimeExc
sal_Int32
SAL_CALL
OPreparedStatement
::
executeUpdate
(
)
throw
(
SQLException
,
RuntimeException
,
std
::
exception
)
{
SAL_INFO
(
"connectivity.mork"
,
"=> OPreparedStatement::executeUpdate()"
);
::
dbtools
::
throwFeatureNotImplementedException
(
"XStatement::executeUpdate"
,
*
this
);
return
0
;
}
...
...
@@ -207,8 +200,6 @@ Reference< XConnection > SAL_CALL OPreparedStatement::getConnection( ) throw(SQ
Reference
<
XResultSet
>
SAL_CALL
OPreparedStatement
::
executeQuery
(
)
throw
(
SQLException
,
RuntimeException
,
std
::
exception
)
{
SAL_INFO
(
"connectivity.mork"
,
"=> OPreparedStatement::executeQuery()"
);
::
osl
::
MutexGuard
aGuard
(
m_aMutex
);
OSL_TRACE
(
"In: OPreparedStatement::executeQuery"
);
checkDisposed
(
OCommonStatement_IBASE
::
rBHelper
.
bDisposed
);
...
...
connectivity/source/drivers/mork/MResultSet.cxx
Dosyayı görüntüle @
72f60713
...
...
@@ -333,7 +333,6 @@ bool OResultSet::fetchCurrentRow( ) throw(SQLException, RuntimeException)
bool
OResultSet
::
pushCard
(
sal_uInt32
/*cardNumber*/
)
throw
(
SQLException
,
RuntimeException
)
{
SAL_INFO
(
"connectivity.mork"
,
"=> OResultSet::pushCard()"
);
return
true
;
/*
if (cardNumber == 0)
...
...
@@ -363,8 +362,6 @@ bool OResultSet::pushCard(sal_uInt32 /*cardNumber*/) throw(SQLException, Runtime
bool
OResultSet
::
fetchRow
(
sal_Int32
cardNumber
,
bool
bForceReload
)
throw
(
SQLException
,
RuntimeException
)
{
SAL_INFO
(
"connectivity.mork"
,
"=> OResultSet::fetchRow()"
);
OSL_TRACE
(
"fetchRow, cardNumber = %u"
,
cardNumber
);
if
(
!
bForceReload
)
{
...
...
@@ -1501,8 +1498,6 @@ sal_Int32 OResultSet::deletedCount()
bool
OResultSet
::
seekRow
(
eRowPosition
pos
,
sal_Int32
nOffset
)
{
SAL_INFO
(
"connectivity.mork"
,
"=> OResultSet::seekRow()"
);
ResultSetEntryGuard
aGuard
(
*
this
);
if
(
!
m_pKeySet
.
is
()
)
m_pStatement
->
getOwnConnection
()
->
throwSQLException
(
STR_ILLEGAL_MOVEMENT
,
*
this
);
...
...
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