[Libreoffice-commits] core.git: connectivity/source

Noel Grandin noel at peralex.com
Tue May 13 11:05:29 PDT 2014


 connectivity/source/commontools/FValue.cxx              |   27 ---
 connectivity/source/commontools/TSkipDeletedSet.cxx     |    7 
 connectivity/source/drivers/calc/CCatalog.cxx           |    2 
 connectivity/source/drivers/calc/CConnection.cxx        |   10 -
 connectivity/source/drivers/calc/CDatabaseMetaData.cxx  |   10 -
 connectivity/source/drivers/calc/CTable.cxx             |   22 --
 connectivity/source/drivers/calc/CTables.cxx            |    1 
 connectivity/source/drivers/dbase/DDatabaseMetaData.cxx |   15 -
 connectivity/source/drivers/dbase/DTable.cxx            |   46 -----
 connectivity/source/drivers/file/FCatalog.cxx           |    6 
 connectivity/source/drivers/file/FDatabaseMetaData.cxx  |  137 ----------------
 connectivity/source/drivers/file/FDriver.cxx            |    9 -
 connectivity/source/drivers/file/FNoException.cxx       |    2 
 connectivity/source/drivers/file/FPreparedStatement.cxx |   43 -----
 connectivity/source/drivers/file/FResultSet.cxx         |   98 -----------
 connectivity/source/drivers/file/FResultSetMetaData.cxx |   23 --
 connectivity/source/drivers/file/FStatement.cxx         |   23 --
 connectivity/source/drivers/file/FStringFunctions.cxx   |   16 -
 connectivity/source/drivers/file/FTable.cxx             |   17 -
 connectivity/source/drivers/file/fcode.cxx              |   29 ---
 connectivity/source/drivers/file/quotedstring.cxx       |    2 
 connectivity/source/drivers/firebird/Connection.cxx     |   15 -
 connectivity/source/drivers/flat/EDatabaseMetaData.cxx  |    5 
 connectivity/source/drivers/flat/ETable.cxx             |   10 -
 connectivity/source/drivers/jdbc/Clob.cxx               |    5 
 connectivity/source/drivers/jdbc/ResultSet.cxx          |   86 ----------
 connectivity/source/drivers/jdbc/ResultSetMetaData.cxx  |   23 --
 connectivity/source/drivers/mork/MQueryHelper.cxx       |   14 -
 connectivity/source/drivers/mork/MStatement.cxx         |   24 --
 connectivity/source/drivers/odbc/OResultSet.cxx         |   32 ---
 connectivity/source/drivers/odbc/OResultSetMetaData.cxx |   13 -
 connectivity/source/drivers/odbc/OTools.cxx             |    7 
 connectivity/source/parse/sqliterator.cxx               |   58 ------
 connectivity/source/parse/sqlnode.cxx                   |   43 -----
 34 files changed, 1 insertion(+), 879 deletions(-)

New commits:
commit 7339ab25eee98b9c90cf46e9073c1faa6b53e9bc
Author: Noel Grandin <noel at peralex.com>
Date:   Tue May 13 09:35:18 2014 +0200

    fdo#63690 - replace RTL_CONTEXT_ macros with SAL_INFO
    
    this is a continuation of the above bug, removing SAL_INFO's
    that only mark function entry.
    
    Change-Id: Idb0f72481415594e3f8b7a11ad6e4b8835f6fca0
    Reviewed-on: https://gerrit.libreoffice.org/9343
    Tested-by: Thomas Arnhold <thomas at arnhold.org>
    Reviewed-by: Thomas Arnhold <thomas at arnhold.org>

diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx
index 4958bf6..e7bb803 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -42,7 +42,6 @@ namespace connectivity
 namespace {
     static bool isStorageCompatible(sal_Int32 _eType1, sal_Int32 _eType2)
     {
-        SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::isStorageCompatible" );
         bool bIsCompatible = true;
 
         if (_eType1 != _eType2)
@@ -193,7 +192,6 @@ namespace tracing
 
 void ORowSetValue::setTypeKind(sal_Int32 _eType)
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::setTypeKind" );
     if ( !m_bNull && !isStorageCompatible(_eType, m_eTypeKind) )
     {
         switch(_eType)
@@ -275,7 +273,6 @@ void ORowSetValue::setTypeKind(sal_Int32 _eType)
 
 void ORowSetValue::free()
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::free" );
     if(!m_bNull)
     {
         switch(m_eTypeKind)
@@ -884,7 +881,6 @@ bool ORowSetValue::operator==(const ORowSetValue& _rRH) const
 
 Any ORowSetValue::makeAny() const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::makeAny" );
     Any rValue;
     if(isBound() && !isNull())
     {
@@ -978,7 +974,6 @@ Any ORowSetValue::makeAny() const
 
 OUString ORowSetValue::getString( ) const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getString" );
     OUString aRet;
     if(!m_bNull)
     {
@@ -1066,7 +1061,6 @@ OUString ORowSetValue::getString( ) const
 
 bool ORowSetValue::getBool()    const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getBool" );
     bool bRet = false;
     if(!m_bNull)
     {
@@ -1139,9 +1133,6 @@ bool ORowSetValue::getBool()    const
 
 sal_Int8 ORowSetValue::getInt8()    const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getInt8" );
-
-
     sal_Int8 nRet = 0;
     if(!m_bNull)
     {
@@ -1285,9 +1276,6 @@ sal_uInt8 ORowSetValue::getUInt8()    const
 
 sal_Int16 ORowSetValue::getInt16()  const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getInt16" );
-
-
     sal_Int16 nRet = 0;
     if(!m_bNull)
     {
@@ -1430,7 +1418,6 @@ sal_uInt16 ORowSetValue::getUInt16()  const
 
 sal_Int32 ORowSetValue::getInt32()  const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getInt32" );
     sal_Int32 nRet = 0;
     if(!m_bNull)
     {
@@ -1577,7 +1564,6 @@ sal_uInt32 ORowSetValue::getUInt32()  const
 
 sal_Int64 ORowSetValue::getLong()   const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getLong" );
     sal_Int64 nRet = 0;
     if(!m_bNull)
     {
@@ -1724,7 +1710,6 @@ sal_uInt64 ORowSetValue::getULong()   const
 
 float ORowSetValue::getFloat()  const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getFloat" );
     float nRet = 0;
     if(!m_bNull)
     {
@@ -1801,9 +1786,6 @@ float ORowSetValue::getFloat()  const
 
 double ORowSetValue::getDouble()    const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getDouble" );
-
-
     double nRet = 0;
     if(!m_bNull)
     {
@@ -1880,7 +1862,6 @@ double ORowSetValue::getDouble()    const
 
 Sequence<sal_Int8>  ORowSetValue::getSequence() const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getSequence" );
     Sequence<sal_Int8> aSeq;
     if (!m_bNull)
     {
@@ -1953,7 +1934,6 @@ Sequence<sal_Int8>  ORowSetValue::getSequence() const
 
 ::com::sun::star::util::Date ORowSetValue::getDate() const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getDate" );
     ::com::sun::star::util::Date aValue;
     if(!m_bNull)
     {
@@ -2012,7 +1992,6 @@ Sequence<sal_Int8>  ORowSetValue::getSequence() const
 
 ::com::sun::star::util::Time ORowSetValue::getTime()        const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getTime" );
     ::com::sun::star::util::Time aValue;
     if(!m_bNull)
     {
@@ -2057,7 +2036,6 @@ Sequence<sal_Int8>  ORowSetValue::getSequence() const
 
 ::com::sun::star::util::DateTime ORowSetValue::getDateTime()    const
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::getDateTime" );
     ::com::sun::star::util::DateTime aValue;
     if(!m_bNull)
     {
@@ -2110,7 +2088,6 @@ Sequence<sal_Int8>  ORowSetValue::getSequence() const
 
 void ORowSetValue::setSigned(bool _bMod)
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::setSigned" );
     if ( m_bSigned != _bMod )
     {
         m_bSigned = _bMod;
@@ -2269,15 +2246,12 @@ void ORowSetValue::fill(sal_Int32 _nPos,
                      sal_Int32 _nType,
                      const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRow>& _xRow)
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::fill (1)" );
     fill(_nPos,_nType,true,_xRow);
 }
 
 
 void ORowSetValue::impl_fill( const sal_Int32 _nType, bool _bNullable, const detail::IValueSource& _rValueSource )
-
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::fill (2)" );
     bool bReadData = true;
     switch(_nType)
     {
@@ -2365,7 +2339,6 @@ void ORowSetValue::impl_fill( const sal_Int32 _nType, bool _bNullable, const det
 
 void ORowSetValue::fill(const Any& _rValue)
 {
-    SAL_INFO( "connectivity.commontools", "dbtools Ocke.Janssen at sun.com ORowSetValue::fill (3)" );
     switch (_rValue.getValueType().getTypeClass())
     {
         case TypeClass_VOID:
diff --git a/connectivity/source/commontools/TSkipDeletedSet.cxx b/connectivity/source/commontools/TSkipDeletedSet.cxx
index 52268ea..58e1a73 100644
--- a/connectivity/source/commontools/TSkipDeletedSet.cxx
+++ b/connectivity/source/commontools/TSkipDeletedSet.cxx
@@ -27,7 +27,6 @@ OSkipDeletedSet::OSkipDeletedSet(IResultSetHelper* _pHelper)
     : m_pHelper(_pHelper)
     ,m_bDeletedVisible(false)
 {
-    SAL_INFO( "connectivity.commontools", "commontools Ocke.Janssen at sun.com OSkipDeletedSet::OSkipDeletedSet" );
     m_aBookmarksPositions.reserve(256);
 }
 
@@ -39,7 +38,6 @@ OSkipDeletedSet::~OSkipDeletedSet()
 
 bool OSkipDeletedSet::skipDeleted(IResultSetHelper::Movement _eCursorPosition, sal_Int32 _nOffset, bool _bRetrieveData)
 {
-    SAL_INFO( "connectivity.commontools", "commontools Ocke.Janssen at sun.com OSkipDeletedSet::skipDeleted" );
     OSL_ENSURE(_eCursorPosition != IResultSetHelper::BOOKMARK,"OSkipDeletedSet::SkipDeleted can't be called for BOOKMARK");
 
     IResultSetHelper::Movement eDelPosition = _eCursorPosition;
@@ -164,7 +162,6 @@ bool OSkipDeletedSet::skipDeleted(IResultSetHelper::Movement _eCursorPosition, s
 
 bool OSkipDeletedSet::moveAbsolute(sal_Int32 _nPos,bool _bRetrieveData)
 {
-    SAL_INFO( "connectivity.commontools", "commontools Ocke.Janssen at sun.com OSkipDeletedSet::moveAbsolute" );
     bool bDataFound = false;
     sal_Int32 nNewPos = _nPos;
     if(nNewPos > 0)
@@ -227,14 +224,12 @@ bool OSkipDeletedSet::moveAbsolute(sal_Int32 _nPos,bool _bRetrieveData)
 
 void OSkipDeletedSet::clear()
 {
-    SAL_INFO( "connectivity.commontools", "commontools Ocke.Janssen at sun.com OSkipDeletedSet::clear" );
     ::std::vector<sal_Int32>().swap(m_aBookmarksPositions);
     //TInt2IntMap().swap(m_aBookmarks);
 }
 
 sal_Int32 OSkipDeletedSet::getMappedPosition(sal_Int32 _nPos) const
 {
-    SAL_INFO( "connectivity.commontools", "commontools Ocke.Janssen at sun.com OSkipDeletedSet::getMappedPosition" );
     ::std::vector<sal_Int32>::const_iterator aFind = ::std::find(m_aBookmarksPositions.begin(),m_aBookmarksPositions.end(),_nPos);
     if ( aFind !=  m_aBookmarksPositions.end() )
         return (aFind - m_aBookmarksPositions.begin()) + 1;
@@ -247,7 +242,6 @@ sal_Int32 OSkipDeletedSet::getMappedPosition(sal_Int32 _nPos) const
 
 void OSkipDeletedSet::insertNewPosition(sal_Int32 _nPos)
 {
-    SAL_INFO( "connectivity.commontools", "commontools Ocke.Janssen at sun.com OSkipDeletedSet::insertNewPosition" );
     //OSL_ENSURE(m_aBookmarks.find(_nPos) == m_aBookmarks.end(),"OSkipDeletedSet::insertNewPosition: Invalid position");
     //m_aBookmarksPositions.push_back(m_aBookmarks.insert(TInt2IntMap::value_type(_nPos,m_aBookmarksPositions.size()+1)).first);
     //OSL_ENSURE(::std::find(m_aBookmarksPositions.begin(),m_aBookmarksPositions.end(),_nPos) == m_aBookmarksPositions.end(),"Invalid driver pos");
@@ -256,7 +250,6 @@ void OSkipDeletedSet::insertNewPosition(sal_Int32 _nPos)
 
 void OSkipDeletedSet::deletePosition(sal_Int32 _nBookmark)
 {
-    SAL_INFO( "connectivity.commontools", "commontools Ocke.Janssen at sun.com OSkipDeletedSet::deletePosition" );
     ::std::vector<sal_Int32>::iterator aFind = ::std::find(m_aBookmarksPositions.begin(),m_aBookmarksPositions.end(),_nBookmark);
     if ( aFind !=  m_aBookmarksPositions.end() )
     {
diff --git a/connectivity/source/drivers/calc/CCatalog.cxx b/connectivity/source/drivers/calc/CCatalog.cxx
index da63d9d..8bc6fa6 100644
--- a/connectivity/source/drivers/calc/CCatalog.cxx
+++ b/connectivity/source/drivers/calc/CCatalog.cxx
@@ -34,12 +34,10 @@ using namespace connectivity::calc;
 
 OCalcCatalog::OCalcCatalog(OCalcConnection* _pCon) : file::OFileCatalog(_pCon)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcCatalog::OCalcCatalog" );
 }
 
 void OCalcCatalog::refreshTables()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcCatalog::refreshTables" );
     TStringVector aVector;
     Sequence< OUString > aTypes;
     OCalcConnection::ODocHolder aDocHodler(((OCalcConnection*)m_pConnection));
diff --git a/connectivity/source/drivers/calc/CConnection.cxx b/connectivity/source/drivers/calc/CConnection.cxx
index 408c1a8..b81a585 100644
--- a/connectivity/source/drivers/calc/CConnection.cxx
+++ b/connectivity/source/drivers/calc/CConnection.cxx
@@ -54,7 +54,6 @@ using namespace ::com::sun::star::sheet;
 
 OCalcConnection::OCalcConnection(ODriver* _pDriver) : OConnection(_pDriver),m_nDocCount(0)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::OCalcConnection" );
     // m_aFilenameExtension is not used
 }
 
@@ -65,7 +64,6 @@ OCalcConnection::~OCalcConnection()
 void OCalcConnection::construct(const OUString& url,const Sequence< PropertyValue >& info)
     throw(SQLException, RuntimeException, DeploymentException)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::construct" );
     //  open file
 
     sal_Int32 nLen = url.indexOf(':');
@@ -106,7 +104,6 @@ void OCalcConnection::construct(const OUString& url,const Sequence< PropertyValu
 
 Reference< XSpreadsheetDocument> OCalcConnection::acquireDoc()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::acquireDoc" );
     if ( m_xDoc.is() )
     {
         osl_atomic_increment(&m_nDocCount);
@@ -173,14 +170,12 @@ Reference< XSpreadsheetDocument> OCalcConnection::acquireDoc()
 
 void OCalcConnection::releaseDoc()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::releaseDoc" );
     if ( osl_atomic_decrement(&m_nDocCount) == 0 )
         ::comphelper::disposeComponent( m_xDoc );
 }
 
 void OCalcConnection::disposing()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::disposing" );
     ::osl::MutexGuard aGuard(m_aMutex);
 
     m_nDocCount = 0;
@@ -198,7 +193,6 @@ IMPLEMENT_SERVICE_INFO(OCalcConnection, "com.sun.star.sdbc.drivers.calc.Connecti
 
 Reference< XDatabaseMetaData > SAL_CALL OCalcConnection::getMetaData(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::getMetaData" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OConnection_BASE::rBHelper.bDisposed);
 
@@ -217,7 +211,6 @@ Reference< XDatabaseMetaData > SAL_CALL OCalcConnection::getMetaData(  ) throw(S
 
 ::com::sun::star::uno::Reference< XTablesSupplier > OCalcConnection::createCatalog()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::createCatalog" );
     ::osl::MutexGuard aGuard( m_aMutex );
     Reference< XTablesSupplier > xTab = m_xCatalog;
     if(!xTab.is())
@@ -233,7 +226,6 @@ Reference< XDatabaseMetaData > SAL_CALL OCalcConnection::getMetaData(  ) throw(S
 
 Reference< XStatement > SAL_CALL OCalcConnection::createStatement(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::createStatement" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OConnection_BASE::rBHelper.bDisposed);
 
@@ -248,7 +240,6 @@ Reference< XStatement > SAL_CALL OCalcConnection::createStatement(  ) throw(SQLE
 Reference< XPreparedStatement > SAL_CALL OCalcConnection::prepareStatement( const OUString& sql )
     throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::prepareStatement" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OConnection_BASE::rBHelper.bDisposed);
 
@@ -265,7 +256,6 @@ Reference< XPreparedStatement > SAL_CALL OCalcConnection::prepareStatement( cons
 Reference< XPreparedStatement > SAL_CALL OCalcConnection::prepareCall( const OUString& /*sql*/ )
     throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcConnection::prepareCall" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OConnection_BASE::rBHelper.bDisposed);
 
diff --git a/connectivity/source/drivers/calc/CDatabaseMetaData.cxx b/connectivity/source/drivers/calc/CDatabaseMetaData.cxx
index fad1452..ad343a7 100644
--- a/connectivity/source/drivers/calc/CDatabaseMetaData.cxx
+++ b/connectivity/source/drivers/calc/CDatabaseMetaData.cxx
@@ -50,7 +50,6 @@ using namespace ::com::sun::star::sheet;
 
 OCalcDatabaseMetaData::OCalcDatabaseMetaData(OConnection* _pCon)    :ODatabaseMetaData(_pCon)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::OCalcDatabaseMetaData" );
 }
 
 
@@ -62,7 +61,6 @@ OCalcDatabaseMetaData::~OCalcDatabaseMetaData()
 
 Reference< XResultSet > OCalcDatabaseMetaData::impl_getTypeInfo_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::impl_getTypeInfo_throw" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
     ODatabaseMetaDataResultSet* pResult = new ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eTypeInfo);
@@ -145,7 +143,6 @@ Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::getColumns(
     const Any& /*catalog*/, const OUString& /*schemaPattern*/, const OUString& tableNamePattern,
         const OUString& columnNamePattern ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::getColumns" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
 
@@ -241,7 +238,6 @@ Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::getColumns(
 
 OUString SAL_CALL OCalcDatabaseMetaData::getURL(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::getURL" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
     return OUString("sdbc:calc:") + m_pConnection->getURL();
@@ -251,7 +247,6 @@ OUString SAL_CALL OCalcDatabaseMetaData::getURL(  ) throw(SQLException, RuntimeE
 
 sal_Int32 SAL_CALL OCalcDatabaseMetaData::getMaxBinaryLiteralLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::getMaxBinaryLiteralLength" );
     return SAL_MAX_INT32;
 }
 
@@ -259,25 +254,21 @@ sal_Int32 SAL_CALL OCalcDatabaseMetaData::getMaxBinaryLiteralLength(  ) throw(SQ
 
 sal_Int32 SAL_CALL OCalcDatabaseMetaData::getMaxCharLiteralLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::getMaxCharLiteralLength" );
     return SAL_MAX_INT32;
 }
 
 sal_Int32 SAL_CALL OCalcDatabaseMetaData::getMaxColumnNameLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::getMaxColumnNameLength" );
     return SAL_MAX_INT32;
 }
 
 sal_Int32 SAL_CALL OCalcDatabaseMetaData::getMaxColumnsInIndex(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::getMaxColumnsInIndex" );
     return 1;
 }
 
 sal_Int32 SAL_CALL OCalcDatabaseMetaData::getMaxColumnsInTable(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::getMaxColumnsInTable" );
     return 256;
 }
 
@@ -360,7 +351,6 @@ Reference< XResultSet > SAL_CALL OCalcDatabaseMetaData::getTables(
         const OUString& tableNamePattern, const Sequence< OUString >& types )
         throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcDatabaseMetaData::getTables" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
     ODatabaseMetaDataResultSet* pResult = new ODatabaseMetaDataResultSet(ODatabaseMetaDataResultSet::eTables);
diff --git a/connectivity/source/drivers/calc/CTable.cxx b/connectivity/source/drivers/calc/CTable.cxx
index 3fd7505..7910c10 100644
--- a/connectivity/source/drivers/calc/CTable.cxx
+++ b/connectivity/source/drivers/calc/CTable.cxx
@@ -67,7 +67,6 @@ using namespace ::com::sun::star::util;
 
 static void lcl_UpdateArea( const Reference<XCellRange>& xUsedRange, sal_Int32& rEndCol, sal_Int32& rEndRow )
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::lcl_UpdateArea" );
     //  update rEndCol, rEndRow if any non-empty cell in xUsedRange is right/below
 
     const Reference<XCellRangesQuery> xUsedQuery( xUsedRange, UNO_QUERY );
@@ -91,7 +90,6 @@ static void lcl_UpdateArea( const Reference<XCellRange>& xUsedRange, sal_Int32&
 
 static void lcl_GetDataArea( const Reference<XSpreadsheet>& xSheet, sal_Int32& rColumnCount, sal_Int32& rRowCount )
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::lcl_GetDataArea" );
     Reference<XSheetCellCursor> xCursor = xSheet->createCursor();
     Reference<XCellRangeAddressable> xRange( xCursor, UNO_QUERY );
     if ( !xRange.is() )
@@ -141,7 +139,6 @@ static void lcl_GetDataArea( const Reference<XSpreadsheet>& xSheet, sal_Int32& r
 
 static CellContentType lcl_GetContentOrResultType( const Reference<XCell>& xCell )
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::lcl_GetContentOrResultType" );
     CellContentType eCellType = xCell->getType();
     if ( eCellType == CellContentType_FORMULA )
     {
@@ -161,7 +158,6 @@ static CellContentType lcl_GetContentOrResultType( const Reference<XCell>& xCell
 
 static Reference<XCell> lcl_GetUsedCell( const Reference<XSpreadsheet>& xSheet, sal_Int32 nDocColumn, sal_Int32 nDocRow )
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::lcl_GetUsedCell" );
     Reference<XCell> xCell = xSheet->getCellByPosition( nDocColumn, nDocRow );
     if ( xCell.is() && xCell->getType() == CellContentType_EMPTY )
     {
@@ -199,7 +195,6 @@ static Reference<XCell> lcl_GetUsedCell( const Reference<XSpreadsheet>& xSheet,
 
 static bool lcl_HasTextInColumn( const Reference<XSpreadsheet>& xSheet, sal_Int32 nDocColumn, sal_Int32 nDocRow )
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::lcl_HasTextInColumn" );
     // look for any text cell or text result in the column
 
     Reference<XCellRangeAddressable> xAddr( xSheet, UNO_QUERY );
@@ -229,7 +224,6 @@ static void lcl_GetColumnInfo( const Reference<XSpreadsheet>& xSheet, const Refe
                         sal_Int32 nDocColumn, sal_Int32 nStartRow, bool bHasHeaders,
                         OUString& rName, sal_Int32& rDataType, bool& rCurrency )
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::lcl_GetColumnInfo" );
     //! avoid duplicate field names
 
     //  get column name from first row, if range contains headers
@@ -318,7 +312,6 @@ static void lcl_SetValue( ORowSetValue& rValue, const Reference<XSpreadsheet>& x
                     const ::Date& rNullDate,
                     sal_Int32 nDBRow, sal_Int32 nDBColumn, sal_Int32 nType )
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::lcl_SetValue" );
     sal_Int32 nDocColumn = nStartCol + nDBColumn - 1;   // database counts from 1
     sal_Int32 nDocRow = nStartRow + nDBRow - 1;
     if (bHasHeaders)
@@ -432,7 +425,6 @@ static void lcl_SetValue( ORowSetValue& rValue, const Reference<XSpreadsheet>& x
 
 static OUString lcl_GetColumnStr( sal_Int32 nColumn )
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::lcl_GetColumnStr" );
     if ( nColumn < 26 )
         return OUString( (sal_Unicode) ( 'A' + nColumn ) );
     else
@@ -447,7 +439,6 @@ static OUString lcl_GetColumnStr( sal_Int32 nColumn )
 
 void OCalcTable::fillColumns()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::fillColumns" );
     if ( !m_xSheet.is() )
         throw SQLException();
 
@@ -541,12 +532,10 @@ OCalcTable::OCalcTable(sdbcx::OCollection* _pTables,OCalcConnection* _pConnectio
                 ,m_bHasHeaders(false)
                 ,m_aNullDate(::Date::EMPTY)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::OCalcTable" );
 }
 
 void OCalcTable::construct()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::construct" );
     //  get sheet object
     Reference< XSpreadsheetDocument> xDoc = m_pConnection->acquireDoc();
     if (xDoc.is())
@@ -629,7 +618,6 @@ void OCalcTable::construct()
 
 void OCalcTable::refreshColumns()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::refreshColumns" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
     TStringVector aVector;
@@ -646,14 +634,12 @@ void OCalcTable::refreshColumns()
 
 void OCalcTable::refreshIndexes()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::refreshIndexes" );
     //  Calc table has no index
 }
 
 
 void SAL_CALL OCalcTable::disposing(void)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::disposing" );
     OFileTable::disposing();
     ::osl::MutexGuard aGuard(m_aMutex);
     m_aColumns = NULL;
@@ -665,7 +651,6 @@ void SAL_CALL OCalcTable::disposing(void)
 
 Sequence< Type > SAL_CALL OCalcTable::getTypes(  ) throw(RuntimeException, std::exception)
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::getTypes" );
     Sequence< Type > aTypes = OTable_TYPEDEF::getTypes();
     ::std::vector<Type> aOwnTypes;
     aOwnTypes.reserve(aTypes.getLength());
@@ -704,7 +689,6 @@ Any SAL_CALL OCalcTable::queryInterface( const Type & rType ) throw(RuntimeExcep
 
 Sequence< sal_Int8 > OCalcTable::getUnoTunnelImplementationId()
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::getUnoTunnelImplementationId" );
     static ::cppu::OImplementationId * pId = 0;
     if (! pId)
     {
@@ -722,7 +706,6 @@ Sequence< sal_Int8 > OCalcTable::getUnoTunnelImplementationId()
 
 sal_Int64 OCalcTable::getSomething( const Sequence< sal_Int8 > & rId ) throw (RuntimeException, std::exception)
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::getSomething" );
     return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(),  rId.getConstArray(), 16 ) )
                 ? reinterpret_cast< sal_Int64 >( this )
                 : OCalcTable_BASE::getSomething(rId);
@@ -730,14 +713,11 @@ sal_Int64 OCalcTable::getSomething( const Sequence< sal_Int8 > & rId ) throw (Ru
 
 sal_Int32 OCalcTable::getCurrentLastPos() const
 {
-    //SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::getCurrentLastPos" );
     return m_nDataRows;
 }
 
 bool OCalcTable::seekRow(IResultSetHelper::Movement eCursorPosition, sal_Int32 nOffset, sal_Int32& nCurPos)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::seekRow" );
-
     // prepare positioning:
 
     sal_uInt32 nNumberOfRecords = m_nDataRows;
@@ -810,7 +790,6 @@ End:
 bool OCalcTable::fetchRow( OValueRefRow& _rRow, const OSQLColumns & _rCols,
                            bool _bUseTableDefs, bool bRetrieveData )
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::fetchRow" );
     // read the bookmark
 
     bool bIsCurRecordDeleted = false;
@@ -846,7 +825,6 @@ bool OCalcTable::fetchRow( OValueRefRow& _rRow, const OSQLColumns & _rCols,
 
 void OCalcTable::FileClose()
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTable::FileClose" );
     ::osl::MutexGuard aGuard(m_aMutex);
 
     OCalcTable_BASE::FileClose();
diff --git a/connectivity/source/drivers/calc/CTables.cxx b/connectivity/source/drivers/calc/CTables.cxx
index 7b084a1..8a2fae9 100644
--- a/connectivity/source/drivers/calc/CTables.cxx
+++ b/connectivity/source/drivers/calc/CTables.cxx
@@ -37,7 +37,6 @@ using namespace ::com::sun::star::container;
 
 sdbcx::ObjectType OCalcTables::createObject(const OUString& _rName)
 {
-    SAL_INFO( "connectivity.drivers", "calc Ocke.Janssen at sun.com OCalcTables::createObject" );
     OCalcTable* pTable = new OCalcTable(this,(OCalcConnection*)static_cast<OFileCatalog&>(m_rParent).getConnection(),
                                         _rName,OUString("TABLE"));
     sdbcx::ObjectType xRet = pTable;
diff --git a/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx b/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx
index 06700541..b302041 100644
--- a/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx
+++ b/connectivity/source/drivers/dbase/DDatabaseMetaData.cxx
@@ -46,7 +46,6 @@ using namespace ::com::sun::star::lang;
 
 ODbaseDatabaseMetaData::ODbaseDatabaseMetaData(::connectivity::file::OConnection* _pCon)    :ODatabaseMetaData(_pCon)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::ODbaseDatabaseMetaData" );
 }
 
 ODbaseDatabaseMetaData::~ODbaseDatabaseMetaData()
@@ -55,7 +54,6 @@ ODbaseDatabaseMetaData::~ODbaseDatabaseMetaData()
 
 Reference< XResultSet > ODbaseDatabaseMetaData::impl_getTypeInfo_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::impl_getTypeInfo_throw" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
     ::connectivity::ODatabaseMetaDataResultSet* pResult = new ::connectivity::ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eTypeInfo);
@@ -157,7 +155,6 @@ Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getColumns(
     const Any& /*catalog*/, const OUString& /*schemaPattern*/, const OUString& tableNamePattern,
         const OUString& columnNamePattern ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::getColumns" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
 
@@ -249,7 +246,6 @@ Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getIndexInfo(
     const Any& /*catalog*/, const OUString& /*schema*/, const OUString& table,
         sal_Bool unique, sal_Bool /*approximate*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::getIndexInfo" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
         Reference< XTablesSupplier > xTables = m_pConnection->createCatalog();
@@ -324,56 +320,47 @@ Reference< XResultSet > SAL_CALL ODbaseDatabaseMetaData::getIndexInfo(
 
 OUString SAL_CALL ODbaseDatabaseMetaData::getURL(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::getURL" );
     ::osl::MutexGuard aGuard( m_aMutex );
     return OUString("sdbc:dbase:") + m_pConnection->getURL();
 }
 
 sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxBinaryLiteralLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::getMaxBinaryLiteralLength" );
     return SAL_MAX_INT32;
 }
 
 sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxCharLiteralLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::getMaxCharLiteralLength" );
     return 254;
 }
 
 sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxColumnNameLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::getMaxColumnNameLength" );
     return 10;
 }
 
 sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxColumnsInIndex(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::getMaxColumnsInIndex" );
     return 1;
 }
 
 sal_Int32 SAL_CALL ODbaseDatabaseMetaData::getMaxColumnsInTable(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::getMaxColumnsInTable" );
     return 128;
 }
 
 sal_Bool SAL_CALL ODbaseDatabaseMetaData::supportsAlterTableWithAddColumn(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::supportsAlterTableWithAddColumn" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODbaseDatabaseMetaData::supportsAlterTableWithDropColumn(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::supportsAlterTableWithDropColumn" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODbaseDatabaseMetaData::isReadOnly(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::isReadOnly" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
     bool bReadOnly = false;
@@ -386,13 +373,11 @@ sal_Bool SAL_CALL ODbaseDatabaseMetaData::isReadOnly(  ) throw(SQLException, Run
 
 bool ODbaseDatabaseMetaData::impl_storesMixedCaseQuotedIdentifiers_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::impl_storesMixedCaseQuotedIdentifiers_throw" );
     return true;
 }
 
 bool ODbaseDatabaseMetaData::impl_supportsMixedCaseQuotedIdentifiers_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseDatabaseMetaData::impl_supportsMixedCaseQuotedIdentifiers_throw" );
     return true;
 }
 
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx
index 47e548a..609161e 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -191,7 +191,6 @@ void lcl_CalDate(sal_Int32 _nJulianDate,sal_Int32 _nJulianTime,com::sun::star::u
 
 void ODbaseTable::readHeader()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::readHeader" );
     OSL_ENSURE(m_pFileStream,"No Stream available!");
     if(!m_pFileStream)
         return;
@@ -294,7 +293,6 @@ void ODbaseTable::readHeader()
 
 void ODbaseTable::fillColumns()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::fillColumns" );
     m_pFileStream->Seek(STREAM_SEEK_TO_BEGIN);
     m_pFileStream->Seek(32L);
 
@@ -444,7 +442,6 @@ ODbaseTable::ODbaseTable(sdbcx::OCollection* _pTables, ODbaseConnection* _pConne
     , m_pMemoStream(NULL)
     , m_bWriteableMemo(false)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::ODbaseTable" );
     // initialize the header
     memset(&m_aHeader, 0, sizeof(m_aHeader));
     m_aHeader.db_typ = dBaseIII;
@@ -465,7 +462,6 @@ ODbaseTable::ODbaseTable(sdbcx::OCollection* _pTables, ODbaseConnection* _pConne
     , m_pMemoStream(NULL)
     , m_bWriteableMemo(false)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::ODbaseTable" );
     memset(&m_aHeader, 0, sizeof(m_aHeader));
     m_eEncoding = getConnection()->getTextEncoding();
 }
@@ -473,7 +469,6 @@ ODbaseTable::ODbaseTable(sdbcx::OCollection* _pTables, ODbaseConnection* _pConne
 
 void ODbaseTable::construct()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::construct" );
     // initialize the header
     m_aHeader.db_typ    = dBaseIII;
     m_aHeader.db_anz    = 0;
@@ -556,7 +551,6 @@ void ODbaseTable::construct()
 
 bool ODbaseTable::ReadMemoHeader()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::ReadMemoHeader" );
     m_pMemoStream->SetNumberFormatInt(NUMBERFORMAT_INT_LITTLEENDIAN);
     m_pMemoStream->RefreshBuffer();         // make sure that the header information is actually read again
     m_pMemoStream->Seek(0L);
@@ -606,7 +600,6 @@ bool ODbaseTable::ReadMemoHeader()
 
 OUString ODbaseTable::getEntry(OConnection* _pConnection,const OUString& _sName )
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::getEntry" );
     OUString sURL;
     try
     {
@@ -650,7 +643,6 @@ OUString ODbaseTable::getEntry(OConnection* _pConnection,const OUString& _sName
 
 void ODbaseTable::refreshColumns()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::refreshColumns" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
     TStringVector aVector;
@@ -667,7 +659,6 @@ void ODbaseTable::refreshColumns()
 
 void ODbaseTable::refreshIndexes()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::refreshIndexes" );
     TStringVector aVector;
     if(m_pFileStream && (!m_pIndexes || m_pIndexes->getCount() == 0))
     {
@@ -712,7 +703,6 @@ void ODbaseTable::refreshIndexes()
 
 void SAL_CALL ODbaseTable::disposing(void)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::disposing" );
     OFileTable::disposing();
     ::osl::MutexGuard aGuard(m_aMutex);
     m_aColumns = NULL;
@@ -720,7 +710,6 @@ void SAL_CALL ODbaseTable::disposing(void)
 
 Sequence< Type > SAL_CALL ODbaseTable::getTypes(  ) throw(RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::getTypes" );
     Sequence< Type > aTypes = OTable_TYPEDEF::getTypes();
     ::std::vector<Type> aOwnTypes;
     aOwnTypes.reserve(aTypes.getLength());
@@ -743,7 +732,6 @@ Sequence< Type > SAL_CALL ODbaseTable::getTypes(  ) throw(RuntimeException, std:
 
 Any SAL_CALL ODbaseTable::queryInterface( const Type & rType ) throw(RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::queryInterface" );
     if( rType == ::getCppuType((const Reference<XKeysSupplier>*)0)  ||
         rType == ::getCppuType((const Reference<XDataDescriptorFactory>*)0))
         return Any();
@@ -755,7 +743,6 @@ Any SAL_CALL ODbaseTable::queryInterface( const Type & rType ) throw(RuntimeExce
 
 Sequence< sal_Int8 > ODbaseTable::getUnoTunnelImplementationId()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::getUnoTunnelImplementationId" );
     static ::cppu::OImplementationId * pId = 0;
     if (! pId)
     {
@@ -773,7 +760,6 @@ Sequence< sal_Int8 > ODbaseTable::getUnoTunnelImplementationId()
 
 sal_Int64 ODbaseTable::getSomething( const Sequence< sal_Int8 > & rId ) throw (RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::getSomething" );
     return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(),  rId.getConstArray(), 16 ) )
                 ? reinterpret_cast< sal_Int64 >( this )
                 : ODbaseTable_BASE::getSomething(rId);
@@ -781,7 +767,6 @@ sal_Int64 ODbaseTable::getSomething( const Sequence< sal_Int8 > & rId ) throw (R
 
 bool ODbaseTable::fetchRow(OValueRefRow& _rRow, const OSQLColumns & _rCols, bool _bUseTableDefs, bool bRetrieveData)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::fetchRow" );
     // Read the data
     bool bIsCurRecordDeleted = (char)m_pBuffer[0] == '*';
 
@@ -1004,7 +989,6 @@ bool ODbaseTable::fetchRow(OValueRefRow& _rRow, const OSQLColumns & _rCols, bool
 
 void ODbaseTable::FileClose()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::FileClose" );
     ::osl::MutexGuard aGuard(m_aMutex);
     // if not everything has been written yet
     if (m_pMemoStream && m_pMemoStream->IsWritable())
@@ -1018,7 +1002,6 @@ void ODbaseTable::FileClose()
 
 bool ODbaseTable::CreateImpl()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::CreateImpl" );
     OSL_ENSURE(!m_pFileStream, "SequenceError");
 
     if ( m_pConnection->isCheckEnabled() && ::dbtools::convertName2SQLName(m_Name,OUString()) != m_Name )
@@ -1133,7 +1116,6 @@ bool ODbaseTable::CreateImpl()
 
 void ODbaseTable::throwInvalidColumnType(const sal_uInt16 _nErrorId,const OUString& _sColumnName)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::throwInvalidColumnType" );
     try
     {
         // we have to drop the file because it is corrupted now
@@ -1153,7 +1135,6 @@ void ODbaseTable::throwInvalidColumnType(const sal_uInt16 _nErrorId,const OUStri
 // creates in principle dBase IV file format
 bool ODbaseTable::CreateFile(const INetURLObject& aFile, bool& bCreateMemo)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::CreateFile" );
     bCreateMemo = false;
     Date aDate( Date::SYSTEM );                     // current date
 
@@ -1402,7 +1383,6 @@ bool ODbaseTable::CreateFile(const INetURLObject& aFile, bool& bCreateMemo)
 // creates in principle dBase III file format
 bool ODbaseTable::CreateMemoFile(const INetURLObject& aFile)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::CreateMemoFile" );
     // filehandling macro for table creation
     m_pMemoStream = createStream_simpleError( aFile.GetMainURL(INetURLObject::NO_DECODE),STREAM_READWRITE | STREAM_SHARE_DENYWRITE);
 
@@ -1422,7 +1402,6 @@ bool ODbaseTable::CreateMemoFile(const INetURLObject& aFile)
 
 bool ODbaseTable::Drop_Static(const OUString& _sUrl, bool _bHasMemoFields, OCollection* _pIndexes )
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::Drop_Static" );
     INetURLObject aURL;
     aURL.SetURL(_sUrl);
 
@@ -1471,7 +1450,6 @@ bool ODbaseTable::Drop_Static(const OUString& _sUrl, bool _bHasMemoFields, OColl
 
 bool ODbaseTable::DropImpl()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::DropImpl" );
     FileClose();
 
     if(!m_pIndexes)
@@ -1490,7 +1468,6 @@ bool ODbaseTable::DropImpl()
 
 bool ODbaseTable::InsertRow(OValueRefVector& rRow, bool bFlush, const Reference<XIndexAccess>& _xCols)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::InsertRow" );
     // fill buffer with blanks
     AllocBuffer();
     memset(m_pBuffer, 0, m_aHeader.db_slng);
@@ -1548,7 +1525,6 @@ bool ODbaseTable::InsertRow(OValueRefVector& rRow, bool bFlush, const Reference<
 
 bool ODbaseTable::UpdateRow(OValueRefVector& rRow, OValueRefRow& pOrgRow, const Reference<XIndexAccess>& _xCols)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::UpdateRow" );
     // fill buffer with blanks
     AllocBuffer();
 
@@ -1578,7 +1554,6 @@ bool ODbaseTable::UpdateRow(OValueRefVector& rRow, OValueRefRow& pOrgRow, const
 
 bool ODbaseTable::DeleteRow(const OSQLColumns& _rCols)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::DeleteRow" );
     // Set the Delete-Flag (be it set or not):
     // Position on desired record:
     sal_Size nFilePos = m_aHeader.db_kopf + (long)(m_nFilePos-1) * m_aHeader.db_slng;
@@ -1631,7 +1606,6 @@ bool ODbaseTable::DeleteRow(const OSQLColumns& _rCols)
 
 Reference<XPropertySet> ODbaseTable::isUniqueByColumnName(sal_Int32 _nColumnPos)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::isUniqueByColumnName" );
     if(!m_pIndexes)
         refreshIndexes();
     if(m_pIndexes->hasElements())
@@ -1666,7 +1640,6 @@ static double toDouble(const OString& rString)
 
 bool ODbaseTable::UpdateBuffer(OValueRefVector& rRow, OValueRefRow pOrgRow, const Reference<XIndexAccess>& _xCols, const bool bForceAllFields)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::UpdateBuffer" );
     OSL_ENSURE(m_pBuffer,"Buffer is NULL!");
     if ( !m_pBuffer )
         return false;
@@ -2003,7 +1976,6 @@ bool ODbaseTable::UpdateBuffer(OValueRefVector& rRow, OValueRefRow pOrgRow, cons
 
 bool ODbaseTable::WriteMemo(const ORowSetValue& aVariable, sal_Size& rBlockNr)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::WriteMemo" );
     // if the BlockNo 0 is given, the block will be appended at the end
     sal_Size nSize = 0;
     OString aStr;
@@ -2139,7 +2111,6 @@ bool ODbaseTable::WriteMemo(const ORowSetValue& aVariable, sal_Size& rBlockNr)
 // XAlterTable
 void SAL_CALL ODbaseTable::alterColumnByName( const OUString& colName, const Reference< XPropertySet >& descriptor ) throw(SQLException, NoSuchElementException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::alterColumnByName" );
     ::osl::MutexGuard aGuard(m_aMutex);
     checkDisposed(OTableDescriptor_BASE::rBHelper.bDisposed);
 
@@ -2152,7 +2123,6 @@ void SAL_CALL ODbaseTable::alterColumnByName( const OUString& colName, const Ref
 
 void SAL_CALL ODbaseTable::alterColumnByIndex( sal_Int32 index, const Reference< XPropertySet >& descriptor ) throw(SQLException, ::com::sun::star::lang::IndexOutOfBoundsException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::alterColumnByIndex" );
     ::osl::MutexGuard aGuard(m_aMutex);
     checkDisposed(OTableDescriptor_BASE::rBHelper.bDisposed);
 
@@ -2168,7 +2138,6 @@ void ODbaseTable::alterColumn(sal_Int32 index,
                               const Reference< XPropertySet >& descriptor ,
                               const Reference< XDataDescriptorFactory >& xOldColumn )
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::alterColumn" );
     if(index < 0 || index >= m_pColumns->getCount())
         throw IndexOutOfBoundsException(OUString::number(index),*this);
 
@@ -2274,13 +2243,11 @@ void ODbaseTable::alterColumn(sal_Int32 index,
 
 Reference< XDatabaseMetaData> ODbaseTable::getMetaData() const
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::getMetaData" );
     return getConnection()->getMetaData();
 }
 
 void SAL_CALL ODbaseTable::rename( const OUString& newName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException, ::com::sun::star::uno::RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::rename" );
     ::osl::MutexGuard aGuard(m_aMutex);
     checkDisposed(OTableDescriptor_BASE::rBHelper.bDisposed);
     if(m_pTables && m_pTables->hasByName(newName))
@@ -2337,7 +2304,6 @@ namespace
 
 void SAL_CALL ODbaseTable::renameImpl( const OUString& newName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException, ::com::sun::star::uno::RuntimeException)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::getEntry" );
     ::osl::MutexGuard aGuard(m_aMutex);
 
     FileClose();
@@ -2353,7 +2319,6 @@ void SAL_CALL ODbaseTable::renameImpl( const OUString& newName ) throw(::com::su
 
 void ODbaseTable::addColumn(const Reference< XPropertySet >& _xNewColumn)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::addColumn" );
     OUString sTempName = createTempFile();
 
     ODbaseTable* pNewTable = new ODbaseTable(m_pTables,static_cast<ODbaseConnection*>(m_pConnection));
@@ -2426,7 +2391,6 @@ void ODbaseTable::addColumn(const Reference< XPropertySet >& _xNewColumn)
 
 void ODbaseTable::dropColumn(sal_Int32 _nPos)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::dropColumn" );
     OUString sTempName = createTempFile();
 
     ODbaseTable* pNewTable = new ODbaseTable(m_pTables,static_cast<ODbaseConnection*>(m_pConnection));
@@ -2482,7 +2446,6 @@ void ODbaseTable::dropColumn(sal_Int32 _nPos)
 
 OUString ODbaseTable::createTempFile()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::createTempFile" );
     OUString aIdent = m_pConnection->getContent()->getIdentifier()->getContentIdentifier();
     if ( aIdent.lastIndexOf('/') != (aIdent.getLength()-1) )
         aIdent += "/";
@@ -2505,7 +2468,6 @@ OUString ODbaseTable::createTempFile()
 
 void ODbaseTable::copyData(ODbaseTable* _pNewTable,sal_Int32 _nPos)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::copyData" );
     sal_Int32 nPos = _nPos + 1; // +1 because we always have the bookmark clumn as well
     OValueRefRow aRow = new OValueRefVector(m_pColumns->getCount());
     OValueRefRow aInsertRow;
@@ -2563,7 +2525,6 @@ void ODbaseTable::copyData(ODbaseTable* _pNewTable,sal_Int32 _nPos)
 
 void ODbaseTable::throwInvalidDbaseFormat()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::throwInvalidDbaseFormat" );
     FileClose();
     // no dbase file
 
@@ -2576,15 +2537,12 @@ void ODbaseTable::throwInvalidDbaseFormat()
 
 void ODbaseTable::refreshHeader()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::refreshHeader" );
     if ( m_aHeader.db_anz == 0 )
         readHeader();
 }
 
 bool ODbaseTable::seekRow(IResultSetHelper::Movement eCursorPosition, sal_Int32 nOffset, sal_Int32& nCurPos)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::seekRow" );
-
     // prepare positioning:
     OSL_ENSURE(m_pFileStream,"ODbaseTable::seekRow: FileStream is NULL!");
 
@@ -2667,7 +2625,6 @@ End:
 
 bool ODbaseTable::ReadMemo(sal_Size nBlockNo, ORowSetValue& aVariable)
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::ReadMemo" );
     bool bIsText = true;
 
     m_pMemoStream->Seek(nBlockNo * m_aMemoHeader.db_size);
@@ -2744,7 +2701,6 @@ bool ODbaseTable::ReadMemo(sal_Size nBlockNo, ORowSetValue& aVariable)
 
 void ODbaseTable::AllocBuffer()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::AllocBuffer" );
     sal_uInt16 nSize = m_aHeader.db_slng;
     OSL_ENSURE(nSize > 0, "Size too small");
 
@@ -2764,7 +2720,6 @@ void ODbaseTable::AllocBuffer()
 
 bool ODbaseTable::WriteBuffer()
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::WriteBuffer" );
     OSL_ENSURE(m_nFilePos >= 1,"SdbDBFCursor::FileFetchRow: ungueltige Record-Position");
 
     // position on desired record:
@@ -2775,7 +2730,6 @@ bool ODbaseTable::WriteBuffer()
 
 sal_Int32 ODbaseTable::getCurrentLastPos() const
 {
-    SAL_INFO( "connectivity.drivers", "dbase Ocke.Janssen at sun.com ODbaseTable::getCurrentLastPos" );
     return m_aHeader.db_anz;
 }
 
diff --git a/connectivity/source/drivers/file/FCatalog.cxx b/connectivity/source/drivers/file/FCatalog.cxx
index 052145b..2026f42 100644
--- a/connectivity/source/drivers/file/FCatalog.cxx
+++ b/connectivity/source/drivers/file/FCatalog.cxx
@@ -35,12 +35,10 @@ using namespace connectivity::file;
 OFileCatalog::OFileCatalog(OConnection* _pCon) : connectivity::sdbcx::OCatalog(_pCon)
                 ,m_pConnection(_pCon)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileCatalog::OFileCatalog" );
 }
 
 void SAL_CALL OFileCatalog::disposing()
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileCatalog::disposing" );
     ::osl::MutexGuard aGuard(m_aMutex);
 
     typedef connectivity::sdbcx::OCatalog OFileCatalog_BASE;
@@ -50,13 +48,11 @@ m_xMetaData.clear();
 
 OUString OFileCatalog::buildName(const Reference< XRow >& _xRow)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileCatalog::buildName" );
     return _xRow->getString(3);
 }
 
 void OFileCatalog::refreshTables()
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileCatalog::refreshTables" );
     TStringVector aVector;
     Sequence< OUString > aTypes;
     Reference< XResultSet > xResult = m_xMetaData->getTables(Any(),
@@ -72,7 +68,6 @@ void OFileCatalog::refreshTables()
 
 Any SAL_CALL OFileCatalog::queryInterface( const Type & rType ) throw(RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileCatalog::queryInterface" );
     if( rType == ::getCppuType((const Reference<XGroupsSupplier>*)0) ||
         rType == ::getCppuType((const Reference<XUsersSupplier>*)0) ||
         rType == ::getCppuType((const Reference<XViewsSupplier>*)0))
@@ -85,7 +80,6 @@ Any SAL_CALL OFileCatalog::queryInterface( const Type & rType ) throw(RuntimeExc
 
 Sequence< Type > SAL_CALL OFileCatalog::getTypes(  ) throw(RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileCatalog::getTypes" );
     typedef sdbcx::OCatalog OFileCatalog_BASE;
 
     Sequence< Type > aTypes = OFileCatalog_BASE::getTypes();
diff --git a/connectivity/source/drivers/file/FDatabaseMetaData.cxx b/connectivity/source/drivers/file/FDatabaseMetaData.cxx
index 06b17ca..c36c302 100644
--- a/connectivity/source/drivers/file/FDatabaseMetaData.cxx
+++ b/connectivity/source/drivers/file/FDatabaseMetaData.cxx
@@ -47,7 +47,6 @@ using namespace com::sun::star::container;
 ODatabaseMetaData::ODatabaseMetaData(OConnection* _pCon) : ::connectivity::ODatabaseMetaDataBase(_pCon,_pCon->getConnectionInfo())
                         ,m_pConnection(_pCon)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::ODatabaseMetaData" );
 }
 
 ODatabaseMetaData::~ODatabaseMetaData()
@@ -56,13 +55,11 @@ ODatabaseMetaData::~ODatabaseMetaData()
 
 Reference< XResultSet > ODatabaseMetaData::impl_getTypeInfo_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_getTypeInfo_throw" );
     return new ODatabaseMetaDataResultSet( ODatabaseMetaDataResultSet::eTypeInfo );
 }
 
 OUString ODatabaseMetaData::impl_getCatalogSeparator_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_getCatalogSeparator_throw" );
     return OUString();
 }
 
@@ -70,7 +67,6 @@ Reference< XResultSet > SAL_CALL ODatabaseMetaData::getColumns(
         const Any& /*catalog*/, const OUString& /*schemaPattern*/, const OUString& /*tableNamePattern*/,
         const OUString& /*columnNamePattern*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getColumns" );
     SAL_WARN( "connectivity.drivers","Should be overloaded!");
     return new ODatabaseMetaDataResultSet( ODatabaseMetaDataResultSet::eColumns );
 }
@@ -163,7 +159,6 @@ Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTables(
         const Any& /*catalog*/, const OUString& /*schemaPattern*/,
         const OUString& tableNamePattern, const Sequence< OUString >& types ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getTables" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
 
@@ -316,80 +311,67 @@ Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTables(
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxBinaryLiteralLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxBinaryLiteralLength" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxRowSize(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxRowSize" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxCatalogNameLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxCatalogNameLength" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxCharLiteralLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxCharLiteralLength" );
     return SAL_MAX_INT32;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxColumnNameLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxColumnNameLength" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxColumnsInIndex(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxColumnsInIndex" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxCursorNameLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxCursorNameLength" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxConnections(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxConnections" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxColumnsInTable(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxColumnsInTable" );
     return 0;
 }
 
 sal_Int32 ODatabaseMetaData::impl_getMaxStatements_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_getMaxStatements_throw" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxTableNameLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxTableNameLength" );
     return 0;
 }
 
 sal_Int32 ODatabaseMetaData::impl_getMaxTablesInSelect_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_getMaxTablesInSelect_throw" );
     return 1;
 }
 
 Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTablePrivileges(
         const Any& /*catalog*/, const OUString& /*schemaPattern*/, const OUString& tableNamePattern ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getTablePrivileges" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
     ODatabaseMetaDataResultSet* pResult = new ODatabaseMetaDataResultSet( ODatabaseMetaDataResultSet::eTablePrivileges );
@@ -458,230 +440,192 @@ Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTablePrivileges(
 
 sal_Bool SAL_CALL ODatabaseMetaData::doesMaxRowSizeIncludeBlobs(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::doesMaxRowSizeIncludeBlobs" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::storesLowerCaseQuotedIdentifiers(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::storesLowerCaseQuotedIdentifiers" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::storesLowerCaseIdentifiers(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::storesLowerCaseIdentifiers" );
     return sal_False;
 }
 
 bool ODatabaseMetaData::impl_storesMixedCaseQuotedIdentifiers_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_storesMixedCaseQuotedIdentifiers_throw" );
     return false;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::storesMixedCaseIdentifiers(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::storesMixedCaseIdentifiers" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::storesUpperCaseQuotedIdentifiers(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::storesUpperCaseQuotedIdentifiers" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::storesUpperCaseIdentifiers(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::storesUpperCaseIdentifiers" );
     return sal_False;
 }
 
 bool ODatabaseMetaData::impl_supportsAlterTableWithAddColumn_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_supportsAlterTableWithAddColumn_throw" );
     return false;
 }
 
 bool ODatabaseMetaData::impl_supportsAlterTableWithDropColumn_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_supportsAlterTableWithDropColumn_throw" );
     return false;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxIndexLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxIndexLength" );
     return 0;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsNonNullableColumns(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsNonNullableColumns" );
     return sal_False;
 }
 
 OUString SAL_CALL ODatabaseMetaData::getCatalogTerm(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getCatalogTerm" );
     return OUString();
 }
 
 OUString ODatabaseMetaData::impl_getIdentifierQuoteString_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_getIdentifierQuoteString_throw" );
     static const OUString sQuote("\"");
     return sQuote;
 }
 
 OUString SAL_CALL ODatabaseMetaData::getExtraNameCharacters(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getExtraNameCharacters" );
     return OUString();
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsDifferentTableCorrelationNames(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsDifferentTableCorrelationNames" );
     return sal_True;
 }
 
 bool ODatabaseMetaData::impl_isCatalogAtStart_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_isCatalogAtStart_throw" );
     return true;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::dataDefinitionIgnoredInTransactions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::dataDefinitionIgnoredInTransactions" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::dataDefinitionCausesTransactionCommit(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::dataDefinitionCausesTransactionCommit" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsDataManipulationTransactionsOnly(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsDataManipulationTransactionsOnly" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsDataDefinitionAndDataManipulationTransactions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsDataDefinitionAndDataManipulationTransactions" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsPositionedDelete(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsPositionedDelete" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsPositionedUpdate(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsPositionedUpdate" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsOpenStatementsAcrossRollback(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsOpenStatementsAcrossRollback" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsOpenStatementsAcrossCommit(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsOpenStatementsAcrossCommit" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsOpenCursorsAcrossCommit(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsOpenCursorsAcrossCommit" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsOpenCursorsAcrossRollback(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsOpenCursorsAcrossRollback" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsTransactionIsolationLevel( sal_Int32 /*level*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsTransactionIsolationLevel" );
     return sal_False;
 }
 
 bool ODatabaseMetaData::impl_supportsSchemasInDataManipulation_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_supportsSchemasInDataManipulation_throw" );
     return false;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsANSI92FullSQL(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsANSI92FullSQL" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsANSI92EntryLevelSQL(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsANSI92EntryLevelSQL" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsIntegrityEnhancementFacility(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsIntegrityEnhancementFacility" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsSchemasInIndexDefinitions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsSchemasInIndexDefinitions" );
     return sal_False;
 }
 
 bool ODatabaseMetaData::impl_supportsSchemasInTableDefinitions_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_supportsSchemasInTableDefinitions_throw" );
     return false;
 }
 
 bool ODatabaseMetaData::impl_supportsCatalogsInTableDefinitions_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_supportsCatalogsInTableDefinitions_throw" );
     return false;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsCatalogsInIndexDefinitions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsCatalogsInIndexDefinitions" );
     return sal_False;
 }
 
 bool ODatabaseMetaData::impl_supportsCatalogsInDataManipulation_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_supportsCatalogsInDataManipulation_throw" );
     return false;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsOuterJoins(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsOuterJoins" );
     return sal_False;
 }
 
 Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTableTypes(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getTableTypes" );
     ::osl::MutexGuard aGuard( m_aMutex );
 
     ODatabaseMetaDataResultSet* pResult = new ODatabaseMetaDataResultSet( ODatabaseMetaDataResultSet::eTableTypes );
@@ -700,416 +644,347 @@ Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTableTypes(  ) throw(SQLE
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxStatementLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxStatementLength" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxProcedureNameLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxProcedureNameLength" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxSchemaNameLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxSchemaNameLength" );
     return 0;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsTransactions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsTransactions" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::allProceduresAreCallable(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::allProceduresAreCallable" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsStoredProcedures(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsStoredProcedures" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsSelectForUpdate(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsSelectForUpdate" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::allTablesAreSelectable(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::allTablesAreSelectable" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::isReadOnly(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::isReadOnly" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::usesLocalFiles(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::usesLocalFiles" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::usesLocalFilePerTable(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::usesLocalFilePerTable" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsTypeConversion(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsTypeConversion" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::nullPlusNonNullIsNull(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::nullPlusNonNullIsNull" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsColumnAliasing(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsColumnAliasing" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsTableCorrelationNames(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsTableCorrelationNames" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsConvert( sal_Int32 /*fromType*/, sal_Int32 /*toType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsConvert" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsExpressionsInOrderBy(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsExpressionsInOrderBy" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsGroupBy(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsGroupBy" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsGroupByBeyondSelect(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsGroupByBeyondSelect" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsGroupByUnrelated(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsGroupByUnrelated" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsMultipleTransactions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsMultipleTransactions" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsMultipleResultSets(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsMultipleResultSets" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsLikeEscapeClause(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsLikeEscapeClause" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsOrderByUnrelated(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsOrderByUnrelated" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsUnion(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsUnion" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsUnionAll(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsUnionAll" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsMixedCaseIdentifiers(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsMixedCaseIdentifiers" );
     return sal_True;
 }
 
 bool ODatabaseMetaData::impl_supportsMixedCaseQuotedIdentifiers_throw(  )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::impl_supportsMixedCaseQuotedIdentifiers_throw" );
     return false;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::nullsAreSortedAtEnd(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::nullsAreSortedAtEnd" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::nullsAreSortedAtStart(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::nullsAreSortedAtStart" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::nullsAreSortedHigh(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::nullsAreSortedHigh" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::nullsAreSortedLow(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::nullsAreSortedLow" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsSchemasInProcedureCalls(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsSchemasInProcedureCalls" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsSchemasInPrivilegeDefinitions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsSchemasInPrivilegeDefinitions" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsCatalogsInProcedureCalls(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsCatalogsInProcedureCalls" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsCatalogsInPrivilegeDefinitions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsCatalogsInPrivilegeDefinitions" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsCorrelatedSubqueries(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsCorrelatedSubqueries" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsSubqueriesInComparisons(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsSubqueriesInComparisons" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsSubqueriesInExists(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsSubqueriesInExists" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsSubqueriesInIns(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsSubqueriesInIns" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsSubqueriesInQuantifieds(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsSubqueriesInQuantifieds" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsANSI92IntermediateSQL(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsANSI92IntermediateSQL" );
     return sal_False;
 }
 
 OUString SAL_CALL ODatabaseMetaData::getURL(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getURL" );
     static const OUString aValue(  "sdbc:file:" );
     return aValue;
 }
 
 OUString SAL_CALL ODatabaseMetaData::getUserName(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getUserName" );
     return OUString();
 }
 
 OUString SAL_CALL ODatabaseMetaData::getDriverName(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getDriverName" );
     return OUString();
 }
 
 OUString SAL_CALL ODatabaseMetaData::getDriverVersion(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getDriverVersion" );
     return OUString::number(1);
 }
 
 OUString SAL_CALL ODatabaseMetaData::getDatabaseProductVersion(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getDatabaseProductVersion" );
     return OUString::number(0);
 }
 
 OUString SAL_CALL ODatabaseMetaData::getDatabaseProductName(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getDatabaseProductName" );
     return OUString();
 }
 
 OUString SAL_CALL ODatabaseMetaData::getProcedureTerm(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getProcedureTerm" );
     return OUString();
 }
 
 OUString SAL_CALL ODatabaseMetaData::getSchemaTerm(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getSchemaTerm" );
     return OUString();
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getDriverMajorVersion(  ) throw(RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getDriverMajorVersion" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getDefaultTransactionIsolation(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getDefaultTransactionIsolation" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getDriverMinorVersion(  ) throw(RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getDriverMinorVersion" );
     return 0;
 }
 
 OUString SAL_CALL ODatabaseMetaData::getSQLKeywords(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getSQLKeywords" );
     return OUString();
 }
 
 OUString SAL_CALL ODatabaseMetaData::getSearchStringEscape(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getSearchStringEscape" );
     return OUString();
 }
 
 OUString SAL_CALL ODatabaseMetaData::getStringFunctions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getStringFunctions" );
     return OUString("UCASE,LCASE,ASCII,LENGTH,OCTET_LENGTH,CHAR_LENGTH,CHARACTER_LENGTH,CHAR,CONCAT,LOCATE,SUBSTRING,LTRIM,RTRIM,SPACE,REPLACE,REPEAT,INSERT,LEFT,RIGHT");
 }
 
 OUString SAL_CALL ODatabaseMetaData::getTimeDateFunctions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getTimeDateFunctions" );
     return OUString("DAYOFWEEK,DAYOFMONTH,DAYOFYEAR,MONTH,DAYNAME,MONTHNAME,QUARTER,WEEK,YEAR,HOUR,MINUTE,SECOND,CURDATE,CURTIME,NOW");
 }
 
 OUString SAL_CALL ODatabaseMetaData::getSystemFunctions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getSystemFunctions" );
     return OUString();
 }
 
 OUString SAL_CALL ODatabaseMetaData::getNumericFunctions(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getNumericFunctions" );
     return OUString("ABS,SIGN,MOD,FLOOR,CEILING,ROUND,EXP,LN,LOG,LOG10,POWER,SQRT,PI,COS,SIN,TAN,ACOS,ASIN,ATAN,ATAN2,DEGREES,RADIANS");
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsExtendedSQLGrammar(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsExtendedSQLGrammar" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsCoreSQLGrammar(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsCoreSQLGrammar" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsMinimumSQLGrammar(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsMinimumSQLGrammar" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsFullOuterJoins(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsFullOuterJoins" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsLimitedOuterJoins(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsLimitedOuterJoins" );
     return sal_False;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxColumnsInGroupBy(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxColumnsInGroupBy" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxColumnsInOrderBy(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxColumnsInOrderBy" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxColumnsInSelect(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxColumnsInSelect" );
     return 0;
 }
 
 sal_Int32 SAL_CALL ODatabaseMetaData::getMaxUserNameLength(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getMaxUserNameLength" );
     return 0;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsResultSetType( sal_Int32 setType ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsResultSetType" );
     switch(setType)
     {
         case ResultSetType::FORWARD_ONLY:
@@ -1123,7 +998,6 @@ sal_Bool SAL_CALL ODatabaseMetaData::supportsResultSetType( sal_Int32 setType )
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsResultSetConcurrency( sal_Int32 setType, sal_Int32 /*concurrency*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsResultSetConcurrency" );
     switch(setType)
     {
         case ResultSetType::FORWARD_ONLY:
@@ -1137,67 +1011,56 @@ sal_Bool SAL_CALL ODatabaseMetaData::supportsResultSetConcurrency( sal_Int32 set
 
 sal_Bool SAL_CALL ODatabaseMetaData::ownUpdatesAreVisible( sal_Int32 /*setType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::ownUpdatesAreVisible" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::ownDeletesAreVisible( sal_Int32 /*setType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::ownDeletesAreVisible" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::ownInsertsAreVisible( sal_Int32 /*setType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::ownInsertsAreVisible" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::othersUpdatesAreVisible( sal_Int32 /*setType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::othersUpdatesAreVisible" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::othersDeletesAreVisible( sal_Int32 /*setType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::othersDeletesAreVisible" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::othersInsertsAreVisible( sal_Int32 /*setType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::othersInsertsAreVisible" );
     return sal_True;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::updatesAreDetected( sal_Int32 /*setType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::updatesAreDetected" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::deletesAreDetected( sal_Int32 /*setType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::deletesAreDetected" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::insertsAreDetected( sal_Int32 /*setType*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::insertsAreDetected" );
     return sal_False;
 }
 
 sal_Bool SAL_CALL ODatabaseMetaData::supportsBatchUpdates(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::supportsBatchUpdates" );
     return sal_False;
 }
 
 Reference< XResultSet > SAL_CALL ODatabaseMetaData::getUDTs( const Any& /*catalog*/, const OUString& /*schemaPattern*/, const OUString& /*typeNamePattern*/, const Sequence< sal_Int32 >& /*types*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com ODatabaseMetaData::getUDTs" );
     return NULL;
 }
 
diff --git a/connectivity/source/drivers/file/FDriver.cxx b/connectivity/source/drivers/file/FDriver.cxx
index 4b18f9f..b88dbfd 100644
--- a/connectivity/source/drivers/file/FDriver.cxx
+++ b/connectivity/source/drivers/file/FDriver.cxx
@@ -40,12 +40,10 @@ OFileDriver::OFileDriver(const ::com::sun::star::uno::Reference< ::com::sun::sta
     : ODriver_BASE(m_aMutex)
     ,m_xContext(_rxContext)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileDriver::OFileDriver" );
 }
 
 void OFileDriver::disposing()
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileDriver::disposing" );
     ::osl::MutexGuard aGuard(m_aMutex);
 
 
@@ -95,7 +93,6 @@ Sequence< OUString > SAL_CALL OFileDriver::getSupportedServiceNames(  ) throw(Ru
 
 Reference< XConnection > SAL_CALL OFileDriver::connect( const OUString& url, const Sequence< PropertyValue >& info ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileDriver::connect" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(ODriver_BASE::rBHelper.bDisposed);
 
@@ -110,13 +107,11 @@ Reference< XConnection > SAL_CALL OFileDriver::connect( const OUString& url, con
 sal_Bool SAL_CALL OFileDriver::acceptsURL( const OUString& url )
                 throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileDriver::acceptsURL" );
     return url.startsWith("sdbc:file:");
 }
 
 Sequence< DriverPropertyInfo > SAL_CALL OFileDriver::getPropertyInfo( const OUString& url, const Sequence< PropertyValue >& /*info*/ ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileDriver::getPropertyInfo" );
     if ( acceptsURL(url) )
     {
         ::std::vector< DriverPropertyInfo > aDriverInfo;
@@ -179,13 +174,11 @@ Sequence< DriverPropertyInfo > SAL_CALL OFileDriver::getPropertyInfo( const OUSt
 
 sal_Int32 SAL_CALL OFileDriver::getMajorVersion(  ) throw(RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileDriver::getMajorVersion" );
     return 1;
 }
 
 sal_Int32 SAL_CALL OFileDriver::getMinorVersion(  ) throw(RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileDriver::getMinorVersion" );
     return 0;
 }
 
@@ -193,7 +186,6 @@ sal_Int32 SAL_CALL OFileDriver::getMinorVersion(  ) throw(RuntimeException, std:
 // XDataDefinitionSupplier
 Reference< XTablesSupplier > SAL_CALL OFileDriver::getDataDefinitionByConnection( const Reference< ::com::sun::star::sdbc::XConnection >& connection ) throw(::com::sun::star::sdbc::SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileDriver::getDataDefinitionByConnection" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(ODriver_BASE::rBHelper.bDisposed);
 
@@ -221,7 +213,6 @@ Reference< XTablesSupplier > SAL_CALL OFileDriver::getDataDefinitionByConnection
 
 Reference< XTablesSupplier > SAL_CALL OFileDriver::getDataDefinitionByURL( const OUString& url, const Sequence< PropertyValue >& info ) throw(::com::sun::star::sdbc::SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OFileDriver::getDataDefinitionByURL" );
     if ( ! acceptsURL(url) )
     {
         ::connectivity::SharedResources aResources;
diff --git a/connectivity/source/drivers/file/FNoException.cxx b/connectivity/source/drivers/file/FNoException.cxx
index d456654..70f5dfb 100644
--- a/connectivity/source/drivers/file/FNoException.cxx
+++ b/connectivity/source/drivers/file/FNoException.cxx
@@ -69,7 +69,6 @@ void OSQLAnalyzer::bindParameterRow(OValueRefRow& _pRow)
 
 void OPreparedStatement::scanParameter(OSQLParseNode* pParseNode,::std::vector< OSQLParseNode*>& _rParaNodes)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::scanParameter" );
     DBG_ASSERT(pParseNode != NULL,"OResultSet: interner Fehler: ungueltiger ParseNode");
 
     // found parameter Name-Rule?
@@ -90,7 +89,6 @@ void OPreparedStatement::scanParameter(OSQLParseNode* pParseNode,::std::vector<
 
 OKeyValue* OResultSet::GetOrderbyKeyValue(OValueRefRow& _rRow)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OResultSet::GetOrderbyKeyValue" );
     sal_uInt32 nBookmarkValue = std::abs((sal_Int32)(_rRow->get())[0]->getValue());
 
     OKeyValue* pKeyValue = OKeyValue::createKeyValue((sal_uInt32)nBookmarkValue);
diff --git a/connectivity/source/drivers/file/FPreparedStatement.cxx b/connectivity/source/drivers/file/FPreparedStatement.cxx
index f4ed968..6fb706b 100644
--- a/connectivity/source/drivers/file/FPreparedStatement.cxx
+++ b/connectivity/source/drivers/file/FPreparedStatement.cxx
@@ -54,19 +54,16 @@ IMPLEMENT_SERVICE_INFO(OPreparedStatement,"com.sun.star.sdbc.driver.file.Prepare
 OPreparedStatement::OPreparedStatement( OConnection* _pConnection)
     : OStatement_BASE2( _pConnection )
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::OPreparedStatement" );
 }
 
 
 OPreparedStatement::~OPreparedStatement()
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::~OPreparedStatement" );
 }
 
 
 void OPreparedStatement::disposing()
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::disposing" );
     ::osl::MutexGuard aGuard(m_aMutex);
 
     OStatement_BASE2::disposing();
@@ -82,7 +79,6 @@ void OPreparedStatement::disposing()
 
 void OPreparedStatement::construct(const OUString& sql)  throw(SQLException, RuntimeException)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::construct" );
     OStatement_Base::construct(sql);
 
     m_aParameterRow = new OValueRefVector();
@@ -135,7 +131,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.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::getMetaData" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OStatement_BASE::rBHelper.bDisposed);
 
@@ -148,7 +143,6 @@ Reference< XResultSetMetaData > SAL_CALL OPreparedStatement::getMetaData(  ) thr
 
 void SAL_CALL OPreparedStatement::close(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::close" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OStatement_BASE::rBHelper.bDisposed);
 }
@@ -156,7 +150,6 @@ void SAL_CALL OPreparedStatement::close(  ) throw(SQLException, RuntimeException
 
 sal_Bool SAL_CALL OPreparedStatement::execute(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::execute" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OStatement_BASE::rBHelper.bDisposed);
 
@@ -173,7 +166,6 @@ sal_Bool SAL_CALL OPreparedStatement::execute(  ) throw(SQLException, RuntimeExc
 
 sal_Int32 SAL_CALL OPreparedStatement::executeUpdate(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::executeUpdate" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OStatement_BASE::rBHelper.bDisposed);
 
@@ -196,14 +188,12 @@ sal_Int32 SAL_CALL OPreparedStatement::executeUpdate(  ) throw(SQLException, Run
 
 void SAL_CALL OPreparedStatement::setString( sal_Int32 parameterIndex, const OUString& x ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::setString" );
     setParameter(parameterIndex,x);
 }
 
 
 Reference< XConnection > SAL_CALL OPreparedStatement::getConnection(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::getConnection" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OStatement_BASE::rBHelper.bDisposed);
 
@@ -213,7 +203,6 @@ Reference< XConnection > SAL_CALL OPreparedStatement::getConnection(  ) throw(SQ
 
 Reference< XResultSet > SAL_CALL OPreparedStatement::executeQuery(  ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::executeQuery" );
     ::osl::MutexGuard aGuard( m_aMutex );
     checkDisposed(OStatement_BASE::rBHelper.bDisposed);
 
@@ -223,40 +212,34 @@ Reference< XResultSet > SAL_CALL OPreparedStatement::executeQuery(  ) throw(SQLE
 
 void SAL_CALL OPreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::setBoolean" );
     setParameter(parameterIndex,static_cast<bool>(x));
 }
 
 void SAL_CALL OPreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::setByte" );
     setParameter(parameterIndex,x);
 }
 
 
 void SAL_CALL OPreparedStatement::setDate( sal_Int32 parameterIndex, const util::Date& aData ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::setDate" );
     setParameter(parameterIndex,DBTypeConversion::toDouble(aData));
 }
 
 void SAL_CALL OPreparedStatement::setTime( sal_Int32 parameterIndex, const util::Time& aVal ) throw(SQLException, RuntimeException, std::exception)
 {
-    SAL_INFO( "connectivity.drivers", "file Ocke.Janssen at sun.com OPreparedStatement::setTime" );
     setParameter(parameterIndex,DBTypeConversion::toDouble(aVal));
 }
 
 

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list