summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-14 10:06:04 +0200
committerNoel Grandin <noel@peralex.com>2014-05-14 16:54:23 +0200
commit72f6071351e52175beb413eaba6b47fd3df26abd (patch)
treefb550967a65b71301f884b8583d62adfbf2daf34 /connectivity
parent9a9bde50204347444825572bdf62f55cccdea49b (diff)
connectivity: remove SAL_INFO's that only mark function entry
Change-Id: If6863d18dac6ee0364c98d255e0cf55748ea4bf9
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/mork/MPreparedStatement.cxx9
-rw-r--r--connectivity/source/drivers/mork/MResultSet.cxx5
2 files changed, 0 insertions, 14 deletions
diff --git a/connectivity/source/drivers/mork/MPreparedStatement.cxx b/connectivity/source/drivers/mork/MPreparedStatement.cxx
index fa9e7d886dce..02aa4bfea4ad 100644
--- a/connectivity/source/drivers/mork/MPreparedStatement.cxx
+++ b/connectivity/source/drivers/mork/MPreparedStatement.cxx
@@ -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);
diff --git a/connectivity/source/drivers/mork/MResultSet.cxx b/connectivity/source/drivers/mork/MResultSet.cxx
index c665b27c87d5..c85e8426b41c 100644
--- a/connectivity/source/drivers/mork/MResultSet.cxx
+++ b/connectivity/source/drivers/mork/MResultSet.cxx
@@ -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 );