2000-09-18 15:18:56 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 07:17:56 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:17:56 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:17:56 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:17:56 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:17:56 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:17:56 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 01:11:42 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_connectivity.hxx"
|
2000-09-18 15:18:56 +00:00
|
|
|
#include "ado/AConnection.hxx"
|
|
|
|
#include "ado/ADatabaseMetaData.hxx"
|
|
|
|
#include "ado/ADriver.hxx"
|
|
|
|
#include "ado/AStatement.hxx"
|
|
|
|
#include "ado/ACallableStatement.hxx"
|
|
|
|
#include "ado/APreparedStatement.hxx"
|
2002-01-18 15:35:28 +00:00
|
|
|
#include "ado/ACatalog.hxx"
|
2000-09-18 15:18:56 +00:00
|
|
|
#include <com/sun/star/sdbc/ColumnValue.hpp>
|
|
|
|
#include <com/sun/star/sdbc/TransactionIsolation.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
2001-04-27 09:08:14 +00:00
|
|
|
#include <cppuhelper/typeprovider.hxx>
|
2001-05-17 08:15:34 +00:00
|
|
|
#include "connectivity/dbexception.hxx"
|
2004-08-02 15:57:15 +00:00
|
|
|
#include <osl/file.hxx>
|
2008-12-10 13:41:25 +00:00
|
|
|
#include "resource/ado_res.hrc"
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-14 10:42:44 +00:00
|
|
|
using namespace dbtools;
|
2000-09-18 15:18:56 +00:00
|
|
|
using namespace connectivity::ado;
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
using namespace com::sun::star::beans;
|
|
|
|
using namespace com::sun::star::sdbc;
|
2002-01-18 15:35:28 +00:00
|
|
|
using namespace com::sun::star::sdbcx;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_SERVICE_INFO(OConnection,"com.sun.star.sdbcx.AConnection","com.sun.star.sdbc.Connection");
|
|
|
|
// --------------------------------------------------------------------------------
|
2006-06-20 00:12:34 +00:00
|
|
|
OConnection::OConnection(ODriver* _pDriver) throw(SQLException, RuntimeException)
|
2001-04-27 09:08:14 +00:00
|
|
|
: OSubComponent<OConnection, OConnection_BASE>((::cppu::OWeakObject*)_pDriver, this),
|
2000-09-18 15:18:56 +00:00
|
|
|
m_bClosed(sal_False),
|
|
|
|
m_xCatalog(NULL),
|
|
|
|
m_pDriver(_pDriver),
|
|
|
|
m_pAdoConnection(NULL),
|
2001-08-30 12:20:59 +00:00
|
|
|
m_bAutocommit(sal_True),
|
2002-11-29 11:24:20 +00:00
|
|
|
m_nEngineType(0),
|
|
|
|
m_pCatalog(NULL)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
osl_incrementInterlockedCount( &m_refCount );
|
|
|
|
|
|
|
|
IClassFactory2* pIUnknown = NULL;
|
|
|
|
IUnknown *pOuter = NULL;
|
|
|
|
HRESULT hr;
|
|
|
|
hr = CoGetClassObject( ADOS::CLSID_ADOCONNECTION_21,
|
|
|
|
CLSCTX_INPROC_SERVER,
|
|
|
|
NULL,
|
|
|
|
IID_IClassFactory2,
|
|
|
|
(void**)&pIUnknown );
|
|
|
|
|
|
|
|
if( !FAILED( hr ) )
|
|
|
|
{
|
|
|
|
ADOConnection *pCon = NULL;
|
|
|
|
hr = pIUnknown->CreateInstanceLic( pOuter,
|
|
|
|
NULL,
|
|
|
|
ADOS::IID_ADOCONNECTION_21,
|
|
|
|
ADOS::GetKeyStr(),
|
|
|
|
(void**) &pCon);
|
|
|
|
|
|
|
|
if( !FAILED( hr ) )
|
|
|
|
{
|
2002-01-18 15:35:28 +00:00
|
|
|
OSL_ENSURE( pCon, "OConnection::OConnection: invalid ADO object!" );
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2002-01-18 15:35:28 +00:00
|
|
|
m_pAdoConnection = new WpADOConnection( pCon );
|
|
|
|
// CreateInstanceLic returned an object which was already acquired
|
|
|
|
pCon->Release( );
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
}
|
2002-01-18 15:35:28 +00:00
|
|
|
|
|
|
|
// Class Factory is no longer needed
|
2000-09-18 15:18:56 +00:00
|
|
|
pIUnknown->Release();
|
|
|
|
}
|
|
|
|
|
|
|
|
osl_decrementInterlockedCount( &m_refCount );
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
OConnection::~OConnection()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void OConnection::construct(const ::rtl::OUString& url,const Sequence< PropertyValue >& info)
|
|
|
|
{
|
|
|
|
osl_incrementInterlockedCount( &m_refCount );
|
|
|
|
|
2008-01-30 06:49:05 +00:00
|
|
|
setConnectionInfo(info);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
sal_Int32 nLen = url.indexOf(':');
|
|
|
|
nLen = url.indexOf(':',nLen+1);
|
|
|
|
::rtl::OUString aDSN(url.copy(nLen+1)),aUID,aPWD;
|
2004-08-02 15:57:15 +00:00
|
|
|
if ( aDSN.compareToAscii("access:",7) == 0 )
|
|
|
|
aDSN = aDSN.copy(7);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
sal_Int32 nTimeout = 20;
|
|
|
|
sal_Bool bSilent = sal_True;
|
2008-01-30 06:49:05 +00:00
|
|
|
const PropertyValue *pIter = info.getConstArray();
|
|
|
|
const PropertyValue *pEnd = pIter + info.getLength();
|
|
|
|
for(;pIter != pEnd;++pIter)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2008-01-30 06:49:05 +00:00
|
|
|
if(!pIter->Name.compareToAscii("Timeout"))
|
|
|
|
pIter->Value >>= nTimeout;
|
|
|
|
else if(!pIter->Name.compareToAscii("Silent"))
|
|
|
|
pIter->Value >>= bSilent;
|
|
|
|
else if(!pIter->Name.compareToAscii("user"))
|
|
|
|
pIter->Value >>= aUID;
|
|
|
|
else if(!pIter->Name.compareToAscii("password"))
|
|
|
|
pIter->Value >>= aPWD;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2008-12-10 13:41:25 +00:00
|
|
|
try
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2008-12-10 13:41:25 +00:00
|
|
|
if(m_pAdoConnection)
|
|
|
|
{
|
|
|
|
if(m_pAdoConnection->Open(aDSN,aUID,aPWD,adConnectUnspecified))
|
|
|
|
m_pAdoConnection->PutCommandTimeout(nTimeout);
|
|
|
|
else
|
|
|
|
ADOS::ThrowException(*m_pAdoConnection,*this);
|
|
|
|
if(m_pAdoConnection->get_State() != adStateOpen)
|
|
|
|
throwGenericSQLException( STR_NO_CONNECTION,*this );
|
|
|
|
|
|
|
|
WpADOProperties aProps = m_pAdoConnection->get_Properties();
|
|
|
|
if(aProps.IsValid())
|
|
|
|
{
|
|
|
|
OTools::putValue(aProps,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Jet OLEDB:ODBC Parsing")),sal_True);
|
|
|
|
OLEVariant aVar(OTools::getValue(aProps,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Jet OLEDB:Engine Type"))));
|
|
|
|
if(!aVar.isNull() && !aVar.isEmpty())
|
|
|
|
m_nEngineType = aVar;
|
|
|
|
}
|
|
|
|
buildTypeInfo();
|
|
|
|
//bErg = TRUE;
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
else
|
2001-05-17 08:15:34 +00:00
|
|
|
::dbtools::throwFunctionSequenceException(*this);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
}
|
2008-12-10 13:41:25 +00:00
|
|
|
catch(const Exception )
|
|
|
|
{
|
|
|
|
osl_decrementInterlockedCount( &m_refCount );
|
|
|
|
throw;
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
osl_decrementInterlockedCount( &m_refCount );
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
2007-03-26 12:56:26 +00:00
|
|
|
void SAL_CALL OConnection::release() throw()
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
relase_ChildImpl();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XStatement > SAL_CALL OConnection::createStatement( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
OStatement* pStmt = new OStatement(this);
|
|
|
|
Reference< XStatement > xStmt = pStmt;
|
|
|
|
m_aStatements.push_back(WeakReferenceHelper(*pStmt));
|
|
|
|
return pStmt;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XPreparedStatement > SAL_CALL OConnection::prepareStatement( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
OPreparedStatement* pStmt = new OPreparedStatement(this,m_aTypeInfo,sql);
|
|
|
|
Reference< XPreparedStatement > xPStmt = pStmt;
|
|
|
|
m_aStatements.push_back(WeakReferenceHelper(*pStmt));
|
|
|
|
return xPStmt;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XPreparedStatement > SAL_CALL OConnection::prepareCall( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
OCallableStatement* pStmt = new OCallableStatement(this,m_aTypeInfo,sql);
|
|
|
|
Reference< XPreparedStatement > xPStmt = pStmt;
|
|
|
|
m_aStatements.push_back(WeakReferenceHelper(*pStmt));
|
|
|
|
return xPStmt;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
::rtl::OUString SAL_CALL OConnection::nativeSQL( const ::rtl::OUString& _sql ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
::rtl::OUString sql = _sql;
|
2002-01-18 15:35:28 +00:00
|
|
|
WpADOProperties aProps = m_pAdoConnection->get_Properties();
|
|
|
|
if(aProps.IsValid())
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2002-01-18 15:35:28 +00:00
|
|
|
OTools::putValue(aProps,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Jet OLEDB:ODBC Parsing")),sal_True);
|
|
|
|
WpADOCommand aCommand;
|
|
|
|
aCommand.Create();
|
|
|
|
aCommand.put_ActiveConnection((IDispatch*)*m_pAdoConnection);
|
|
|
|
aCommand.put_CommandText(sql);
|
|
|
|
sql = aCommand.get_CommandText();
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return sql;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setAutoCommit( sal_Bool autoCommit ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
m_bAutocommit = autoCommit;
|
|
|
|
if(!autoCommit)
|
|
|
|
m_pAdoConnection->BeginTrans();
|
|
|
|
else
|
|
|
|
m_pAdoConnection->RollbackTrans();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL OConnection::getAutoCommit( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
return m_bAutocommit;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::commit( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
m_pAdoConnection->CommitTrans();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::rollback( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
m_pAdoConnection->RollbackTrans();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL OConnection::isClosed( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
return OConnection_BASE::rBHelper.bDisposed && !m_pAdoConnection->get_State();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XDatabaseMetaData > SAL_CALL OConnection::getMetaData( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2000-11-03 13:21:22 +00:00
|
|
|
Reference< XDatabaseMetaData > xMetaData = m_xMetaData;
|
|
|
|
if(!xMetaData.is())
|
|
|
|
{
|
|
|
|
xMetaData = new ODatabaseMetaData(this);
|
|
|
|
m_xMetaData = xMetaData;
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2000-11-03 13:21:22 +00:00
|
|
|
return xMetaData;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setReadOnly( sal_Bool readOnly ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2006-06-20 00:12:34 +00:00
|
|
|
|
|
|
|
m_pAdoConnection->put_Mode(readOnly ? adModeRead : adModeReadWrite);
|
2000-09-18 15:18:56 +00:00
|
|
|
ADOS::ThrowException(*m_pAdoConnection,*this);
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL OConnection::isReadOnly( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
return m_pAdoConnection->get_Mode() == adModeRead;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setCatalog( const ::rtl::OUString& catalog ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
m_pAdoConnection->PutDefaultDatabase(catalog);
|
|
|
|
ADOS::ThrowException(*m_pAdoConnection,*this);
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
::rtl::OUString SAL_CALL OConnection::getCatalog( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
return m_pAdoConnection->GetDefaultDatabase();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setTransactionIsolation( sal_Int32 level ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
IsolationLevelEnum eIso;
|
|
|
|
switch(level)
|
|
|
|
{
|
|
|
|
case TransactionIsolation::NONE:
|
|
|
|
eIso = adXactUnspecified;
|
|
|
|
break;
|
|
|
|
case TransactionIsolation::READ_UNCOMMITTED:
|
|
|
|
eIso = adXactReadUncommitted;
|
|
|
|
break;
|
|
|
|
case TransactionIsolation::READ_COMMITTED:
|
|
|
|
eIso = adXactReadCommitted;
|
|
|
|
break;
|
|
|
|
case TransactionIsolation::REPEATABLE_READ:
|
|
|
|
eIso = adXactRepeatableRead;
|
|
|
|
break;
|
|
|
|
case TransactionIsolation::SERIALIZABLE:
|
|
|
|
eIso = adXactSerializable;
|
|
|
|
break;
|
|
|
|
default:
|
2001-03-21 12:47:12 +00:00
|
|
|
OSL_ENSURE(0,"OConnection::setTransactionIsolation invalid level");
|
2000-09-18 15:18:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_pAdoConnection->put_IsolationLevel(eIso);
|
|
|
|
ADOS::ThrowException(*m_pAdoConnection,*this);
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Int32 SAL_CALL OConnection::getTransactionIsolation( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
sal_Int32 nRet = 0;
|
|
|
|
switch(m_pAdoConnection->get_IsolationLevel())
|
|
|
|
{
|
|
|
|
case adXactUnspecified:
|
|
|
|
nRet = TransactionIsolation::NONE;
|
|
|
|
break;
|
|
|
|
case adXactReadUncommitted:
|
|
|
|
nRet = TransactionIsolation::READ_UNCOMMITTED;
|
|
|
|
break;
|
|
|
|
case adXactReadCommitted:
|
|
|
|
nRet = TransactionIsolation::READ_COMMITTED;
|
|
|
|
break;
|
|
|
|
case adXactRepeatableRead:
|
|
|
|
nRet = TransactionIsolation::REPEATABLE_READ;
|
|
|
|
break;
|
|
|
|
case adXactSerializable:
|
|
|
|
nRet = TransactionIsolation::SERIALIZABLE;
|
|
|
|
break;
|
|
|
|
default:
|
2001-03-21 12:47:12 +00:00
|
|
|
OSL_ENSURE(0,"OConnection::setTransactionIsolation invalid level");
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
ADOS::ThrowException(*m_pAdoConnection,*this);
|
|
|
|
return nRet;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OConnection::getTypeMap( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
2006-06-20 00:12:34 +00:00
|
|
|
void SAL_CALL OConnection::setTypeMap( const Reference< ::com::sun::star::container::XNameAccess >& /*typeMap*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2006-06-20 00:12:34 +00:00
|
|
|
::dbtools::throwFeatureNotImplementedException( "XConnection::setTypeMap", *this );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
// XCloseable
|
|
|
|
void SAL_CALL OConnection::close( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-17 06:30:42 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
dispose();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
// XWarningsSupplier
|
|
|
|
Any SAL_CALL OConnection::getWarnings( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
return Any();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::clearWarnings( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void OConnection::buildTypeInfo() throw( SQLException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
2002-11-29 11:24:20 +00:00
|
|
|
ADORecordset *pRecordset = m_pAdoConnection->getTypeInfo();
|
|
|
|
if ( pRecordset )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2002-11-29 11:24:20 +00:00
|
|
|
pRecordset->AddRef();
|
|
|
|
VARIANT_BOOL bIsAtBOF;
|
|
|
|
pRecordset->get_BOF(&bIsAtBOF);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2002-11-29 11:24:20 +00:00
|
|
|
sal_Bool bOk = sal_True;
|
|
|
|
if ( bIsAtBOF == VARIANT_TRUE )
|
|
|
|
bOk = SUCCEEDED(pRecordset->MoveNext());
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2002-11-29 11:24:20 +00:00
|
|
|
if ( bOk )
|
|
|
|
{
|
2004-08-02 15:57:15 +00:00
|
|
|
// HACK for access
|
|
|
|
static const ::rtl::OUString s_sVarChar(RTL_CONSTASCII_USTRINGPARAM("VarChar"));
|
2002-11-29 11:24:20 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
sal_Int32 nPos = 1;
|
|
|
|
OExtendedTypeInfo* aInfo = new OExtendedTypeInfo();
|
|
|
|
aInfo->aSimpleType.aTypeName = ADOS::getField(pRecordset,nPos++).get_Value();
|
2004-08-02 15:57:15 +00:00
|
|
|
aInfo->eType = (DataTypeEnum)(sal_Int32)ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
if ( aInfo->eType == adWChar && aInfo->aSimpleType.aTypeName == s_sVarChar )
|
|
|
|
aInfo->eType = adVarWChar;
|
2006-06-20 00:12:34 +00:00
|
|
|
aInfo->aSimpleType.nType = (sal_Int16)ADOS::MapADOType2Jdbc(static_cast<DataTypeEnum>(aInfo->eType));
|
2002-11-29 11:24:20 +00:00
|
|
|
aInfo->aSimpleType.nPrecision = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.aLiteralPrefix = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.aLiteralSuffix = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.aCreateParams = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.bNullable = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.bCaseSensitive = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.nSearchType = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.bUnsigned = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.bCurrency = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.bAutoIncrement = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.aLocalTypeName = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.nMinimumScale = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.nMaximumScale = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
aInfo->aSimpleType.nNumPrecRadix = ADOS::getField(pRecordset,nPos++).get_Value();
|
|
|
|
// Now that we have the type info, save it
|
|
|
|
// in the Hashtable if we don't already have an
|
|
|
|
// entry for this SQL type.
|
|
|
|
|
2004-08-02 15:57:15 +00:00
|
|
|
m_aTypeInfo.insert(OTypeInfoMap::value_type(aInfo->eType,aInfo));
|
2002-11-29 11:24:20 +00:00
|
|
|
}
|
|
|
|
while ( SUCCEEDED(pRecordset->MoveNext()) );
|
|
|
|
}
|
|
|
|
pRecordset->Release();
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
void OConnection::disposing()
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
|
2008-01-30 06:49:05 +00:00
|
|
|
OConnection_BASE::disposing();
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2000-11-03 13:21:22 +00:00
|
|
|
m_bClosed = sal_True;
|
|
|
|
m_xMetaData = ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbc::XDatabaseMetaData>();
|
2002-08-23 09:06:33 +00:00
|
|
|
m_xCatalog = ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbcx::XTablesSupplier>();
|
|
|
|
m_pDriver = NULL;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
m_pAdoConnection->Close();
|
|
|
|
|
2002-08-23 09:06:33 +00:00
|
|
|
OTypeInfoMap::iterator aIter = m_aTypeInfo.begin();
|
|
|
|
for (; aIter != m_aTypeInfo.end(); ++aIter)
|
|
|
|
delete aIter->second;
|
|
|
|
|
|
|
|
m_aTypeInfo.clear();
|
|
|
|
|
|
|
|
delete m_pAdoConnection;
|
|
|
|
m_pAdoConnection = NULL;
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
dispose_ChildImpl();
|
|
|
|
}
|
2001-04-27 09:08:14 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
sal_Int64 SAL_CALL OConnection::getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rId ) throw (::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
2001-08-24 05:19:41 +00:00
|
|
|
return (rId.getLength() == 16 && 0 == rtl_compareMemory(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
|
|
|
|
?
|
2006-06-20 00:12:34 +00:00
|
|
|
reinterpret_cast< sal_Int64 >( this )
|
2001-08-24 05:19:41 +00:00
|
|
|
:
|
|
|
|
OConnection_BASE::getSomething(rId);
|
2001-04-27 09:08:14 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Sequence< sal_Int8 > OConnection::getUnoTunnelImplementationId()
|
|
|
|
{
|
|
|
|
static ::cppu::OImplementationId * pId = 0;
|
|
|
|
if (! pId)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
|
|
|
|
if (! pId)
|
|
|
|
{
|
|
|
|
static ::cppu::OImplementationId aId;
|
|
|
|
pId = &aId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pId->getImplementationId();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2002-11-29 11:24:20 +00:00
|
|
|
const OExtendedTypeInfo* OConnection::getTypeInfoFromType(const OTypeInfoMap& _rTypeInfo,
|
2004-03-02 11:32:56 +00:00
|
|
|
DataTypeEnum _nType,
|
2002-07-22 09:06:14 +00:00
|
|
|
const ::rtl::OUString& _sTypeName,
|
|
|
|
sal_Int32 _nPrecision,
|
|
|
|
sal_Int32 _nScale,
|
|
|
|
sal_Bool& _brForceToType)
|
|
|
|
{
|
2002-11-29 11:24:20 +00:00
|
|
|
const OExtendedTypeInfo* pTypeInfo = NULL;
|
2002-07-22 09:06:14 +00:00
|
|
|
_brForceToType = sal_False;
|
|
|
|
// search for type
|
|
|
|
::std::pair<OTypeInfoMap::const_iterator, OTypeInfoMap::const_iterator> aPair = _rTypeInfo.equal_range(_nType);
|
|
|
|
OTypeInfoMap::const_iterator aIter = aPair.first;
|
|
|
|
if(aIter != _rTypeInfo.end()) // compare with end is correct here
|
|
|
|
{
|
|
|
|
for(;aIter != aPair.second;++aIter)
|
|
|
|
{
|
|
|
|
// search the best matching type
|
2004-08-02 15:57:15 +00:00
|
|
|
OExtendedTypeInfo* pInfo = aIter->second;
|
2002-07-22 09:06:14 +00:00
|
|
|
#ifdef DBG_UTIL
|
2004-08-02 15:57:15 +00:00
|
|
|
::rtl::OUString sDBTypeName = pInfo->aSimpleType.aTypeName;
|
2006-06-20 00:12:34 +00:00
|
|
|
sal_Int32 nDBTypePrecision = pInfo->aSimpleType.nPrecision; (void)nDBTypePrecision;
|
|
|
|
sal_Int32 nDBTypeScale = pInfo->aSimpleType.nMaximumScale; (void)nDBTypeScale;
|
|
|
|
sal_Int32 nAdoType = pInfo->eType; (void)nAdoType;
|
2002-07-22 09:06:14 +00:00
|
|
|
#endif
|
|
|
|
if ( ( !_sTypeName.getLength()
|
2004-08-02 15:57:15 +00:00
|
|
|
|| (pInfo->aSimpleType.aTypeName.equalsIgnoreAsciiCase(_sTypeName))
|
2002-07-22 09:06:14 +00:00
|
|
|
)
|
2004-08-02 15:57:15 +00:00
|
|
|
&& (pInfo->aSimpleType.nPrecision >= _nPrecision)
|
|
|
|
&& (pInfo->aSimpleType.nMaximumScale >= _nScale)
|
|
|
|
|
2002-07-22 09:06:14 +00:00
|
|
|
)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aIter == aPair.second)
|
|
|
|
{
|
|
|
|
for(aIter = aPair.first; aIter != aPair.second; ++aIter)
|
|
|
|
{
|
|
|
|
// search the best matching type (now comparing the local names)
|
2002-11-29 11:24:20 +00:00
|
|
|
if ( (aIter->second->aSimpleType.aLocalTypeName.equalsIgnoreAsciiCase(_sTypeName))
|
|
|
|
&& (aIter->second->aSimpleType.nPrecision >= _nPrecision)
|
|
|
|
&& (aIter->second->aSimpleType.nMaximumScale >= _nScale)
|
2002-07-22 09:06:14 +00:00
|
|
|
)
|
|
|
|
{
|
|
|
|
// we can not assert here because we could be in d&d
|
|
|
|
/*
|
|
|
|
OSL_ENSURE(sal_False,
|
|
|
|
( ::rtl::OString("getTypeInfoFromType: assuming column type ")
|
|
|
|
+= ::rtl::OString(aIter->second->aTypeName.getStr(), aIter->second->aTypeName.getLength(), gsl_getSystemTextEncoding())
|
|
|
|
+= ::rtl::OString("\" (expected type name ")
|
|
|
|
+= ::rtl::OString(_sTypeName.getStr(), _sTypeName.getLength(), gsl_getSystemTextEncoding())
|
|
|
|
+= ::rtl::OString(" matches the type's local name).")).getStr());
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aIter == aPair.second)
|
|
|
|
{ // no match for the names, no match for the local names
|
|
|
|
// -> drop the precision and the scale restriction, accept any type with the property
|
|
|
|
// type id (nType)
|
|
|
|
|
|
|
|
// we can not assert here because we could be in d&d
|
|
|
|
pTypeInfo = aPair.first->second;
|
|
|
|
_brForceToType = sal_True;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pTypeInfo = aIter->second;
|
|
|
|
}
|
2004-03-02 11:32:56 +00:00
|
|
|
else if ( _sTypeName.getLength() )
|
2002-07-22 09:06:14 +00:00
|
|
|
{
|
|
|
|
::comphelper::TStringMixEqualFunctor aCase(sal_False);
|
|
|
|
// search for typeinfo where the typename is equal _sTypeName
|
|
|
|
OTypeInfoMap::const_iterator aFind = ::std::find_if(_rTypeInfo.begin(),
|
|
|
|
_rTypeInfo.end(),
|
|
|
|
::std::compose1(
|
|
|
|
::std::bind2nd(aCase, _sTypeName),
|
|
|
|
::std::compose1(
|
2002-11-29 11:24:20 +00:00
|
|
|
::std::mem_fun(&OExtendedTypeInfo::getDBName),
|
2002-07-22 09:06:14 +00:00
|
|
|
::std::select2nd<OTypeInfoMap::value_type>())
|
|
|
|
)
|
|
|
|
);
|
|
|
|
if(aFind != _rTypeInfo.end())
|
|
|
|
pTypeInfo = aFind->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we can not assert here because we could be in d&d
|
|
|
|
// OSL_ENSURE(pTypeInfo, "getTypeInfoFromType: no type info found for this type!");
|
|
|
|
return pTypeInfo;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2001-04-27 09:08:14 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|