Kaydet (Commit) 72f60713 authored tarafından Noel Grandin's avatar Noel Grandin

connectivity: remove SAL_INFO's that only mark function entry

Change-Id: If6863d18dac6ee0364c98d255e0cf55748ea4bf9
üst 9a9bde50
...@@ -81,8 +81,6 @@ void SAL_CALL OPreparedStatement::disposing() ...@@ -81,8 +81,6 @@ void SAL_CALL OPreparedStatement::disposing()
OCommonStatement::StatementType OPreparedStatement::parseSql( const OUString& sql , sal_Bool bAdjusted ) OCommonStatement::StatementType OPreparedStatement::parseSql( const OUString& sql , sal_Bool bAdjusted )
throw ( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException ) throw ( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException )
{ {
SAL_INFO("connectivity.mork", "=> OPreparedStatement::parseSql()" );
StatementType eStatementType = OCommonStatement::parseSql( sql, bAdjusted ); StatementType eStatementType = OCommonStatement::parseSql( sql, bAdjusted );
if ( eStatementType != eSelect ) if ( eStatementType != eSelect )
return eStatementType; return eStatementType;
...@@ -148,8 +146,6 @@ Any SAL_CALL OPreparedStatement::queryInterface( const Type & rType ) throw(Runt ...@@ -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) Reference< XResultSetMetaData > SAL_CALL OPreparedStatement::getMetaData( ) throw(SQLException, RuntimeException, std::exception)
{ {
SAL_INFO("connectivity.mork", "=> OPreparedStatement::getMetaData()" );
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(OCommonStatement_IBASE::rBHelper.bDisposed); checkDisposed(OCommonStatement_IBASE::rBHelper.bDisposed);
...@@ -168,7 +164,6 @@ Reference< XResultSetMetaData > SAL_CALL OPreparedStatement::getMetaData( ) thr ...@@ -168,7 +164,6 @@ Reference< XResultSetMetaData > SAL_CALL OPreparedStatement::getMetaData( ) thr
sal_Bool SAL_CALL OPreparedStatement::execute( ) throw(SQLException, RuntimeException, std::exception) sal_Bool SAL_CALL OPreparedStatement::execute( ) throw(SQLException, RuntimeException, std::exception)
{ {
SAL_INFO("connectivity.mork", "=> OPreparedStatement::execute()" );
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(OCommonStatement_IBASE::rBHelper.bDisposed); checkDisposed(OCommonStatement_IBASE::rBHelper.bDisposed);
...@@ -179,8 +174,6 @@ sal_Bool SAL_CALL OPreparedStatement::execute( ) throw(SQLException, RuntimeExc ...@@ -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_Int32 SAL_CALL OPreparedStatement::executeUpdate( ) throw(SQLException, RuntimeException, std::exception)
{ {
SAL_INFO("connectivity.mork", "=> OPreparedStatement::executeUpdate()" );
::dbtools::throwFeatureNotImplementedException( "XStatement::executeUpdate", *this ); ::dbtools::throwFeatureNotImplementedException( "XStatement::executeUpdate", *this );
return 0; return 0;
} }
...@@ -207,8 +200,6 @@ Reference< XConnection > SAL_CALL OPreparedStatement::getConnection( ) throw(SQ ...@@ -207,8 +200,6 @@ Reference< XConnection > SAL_CALL OPreparedStatement::getConnection( ) throw(SQ
Reference< XResultSet > SAL_CALL OPreparedStatement::executeQuery( ) throw(SQLException, RuntimeException, std::exception) Reference< XResultSet > SAL_CALL OPreparedStatement::executeQuery( ) throw(SQLException, RuntimeException, std::exception)
{ {
SAL_INFO("connectivity.mork", "=> OPreparedStatement::executeQuery()" );
::osl::MutexGuard aGuard( m_aMutex ); ::osl::MutexGuard aGuard( m_aMutex );
OSL_TRACE("In: OPreparedStatement::executeQuery" ); OSL_TRACE("In: OPreparedStatement::executeQuery" );
checkDisposed(OCommonStatement_IBASE::rBHelper.bDisposed); checkDisposed(OCommonStatement_IBASE::rBHelper.bDisposed);
......
...@@ -333,7 +333,6 @@ bool OResultSet::fetchCurrentRow( ) throw(SQLException, RuntimeException) ...@@ -333,7 +333,6 @@ bool OResultSet::fetchCurrentRow( ) throw(SQLException, RuntimeException)
bool OResultSet::pushCard(sal_uInt32 /*cardNumber*/) throw(SQLException, RuntimeException) bool OResultSet::pushCard(sal_uInt32 /*cardNumber*/) throw(SQLException, RuntimeException)
{ {
SAL_INFO("connectivity.mork", "=> OResultSet::pushCard()" );
return true; return true;
/* /*
if (cardNumber == 0) if (cardNumber == 0)
...@@ -363,8 +362,6 @@ bool OResultSet::pushCard(sal_uInt32 /*cardNumber*/) throw(SQLException, Runtime ...@@ -363,8 +362,6 @@ bool OResultSet::pushCard(sal_uInt32 /*cardNumber*/) throw(SQLException, Runtime
bool OResultSet::fetchRow(sal_Int32 cardNumber,bool bForceReload) throw(SQLException, RuntimeException) bool OResultSet::fetchRow(sal_Int32 cardNumber,bool bForceReload) throw(SQLException, RuntimeException)
{ {
SAL_INFO("connectivity.mork", "=> OResultSet::fetchRow()" );
OSL_TRACE("fetchRow, cardNumber = %u", cardNumber ); OSL_TRACE("fetchRow, cardNumber = %u", cardNumber );
if (!bForceReload) if (!bForceReload)
{ {
...@@ -1501,8 +1498,6 @@ sal_Int32 OResultSet::deletedCount() ...@@ -1501,8 +1498,6 @@ sal_Int32 OResultSet::deletedCount()
bool OResultSet::seekRow( eRowPosition pos, sal_Int32 nOffset ) bool OResultSet::seekRow( eRowPosition pos, sal_Int32 nOffset )
{ {
SAL_INFO("connectivity.mork", "=> OResultSet::seekRow()" );
ResultSetEntryGuard aGuard( *this ); ResultSetEntryGuard aGuard( *this );
if ( !m_pKeySet.is() ) if ( !m_pKeySet.is() )
m_pStatement->getOwnConnection()->throwSQLException( STR_ILLEGAL_MOVEMENT, *this ); m_pStatement->getOwnConnection()->throwSQLException( STR_ILLEGAL_MOVEMENT, *this );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment