2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-12 22:04:38 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2017-10-27 19:27:55 +02: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>
|
|
|
|
#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>
|
2014-06-04 15:29:58 +02:00
|
|
|
#include <connectivity/dbexception.hxx>
|
2004-08-02 15:57:15 +00:00
|
|
|
#include <osl/file.hxx>
|
2017-10-27 19:27:55 +02:00
|
|
|
#include <strings.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
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
IMPLEMENT_SERVICE_INFO(OConnection,"com.sun.star.sdbcx.AConnection","com.sun.star.sdbc.Connection");
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
OConnection::OConnection(ODriver* _pDriver)
|
2018-02-01 13:54:31 +02:00
|
|
|
: m_xCatalog(nullptr),
|
2000-09-18 15:18:56 +00:00
|
|
|
m_pDriver(_pDriver),
|
2016-10-14 16:57:58 +02:00
|
|
|
m_pAdoConnection(nullptr),
|
|
|
|
m_pCatalog(nullptr),
|
2002-11-29 11:24:20 +00:00
|
|
|
m_nEngineType(0),
|
2016-10-14 16:57:58 +02:00
|
|
|
m_bClosed(false),
|
|
|
|
m_bAutocommit(true)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2012-09-22 01:51:12 -05:00
|
|
|
osl_atomic_increment( &m_refCount );
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2016-10-14 16:57:58 +02:00
|
|
|
IClassFactory2* pIUnknown = nullptr;
|
2000-09-18 15:18:56 +00:00
|
|
|
HRESULT hr;
|
|
|
|
hr = CoGetClassObject( ADOS::CLSID_ADOCONNECTION_21,
|
|
|
|
CLSCTX_INPROC_SERVER,
|
2016-10-14 16:57:58 +02:00
|
|
|
nullptr,
|
2000-09-18 15:18:56 +00:00
|
|
|
IID_IClassFactory2,
|
2016-10-14 16:57:58 +02:00
|
|
|
reinterpret_cast<void**>(&pIUnknown) );
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
if( !FAILED( hr ) )
|
|
|
|
{
|
2016-10-14 16:57:58 +02:00
|
|
|
ADOConnection *pCon = nullptr;
|
|
|
|
IUnknown *pOuter = nullptr;
|
2000-09-18 15:18:56 +00:00
|
|
|
hr = pIUnknown->CreateInstanceLic( pOuter,
|
2016-10-14 16:57:58 +02:00
|
|
|
nullptr,
|
2000-09-18 15:18:56 +00:00
|
|
|
ADOS::IID_ADOCONNECTION_21,
|
2016-10-11 15:39:25 +02:00
|
|
|
ADOS::GetKeyStr().asBSTR(),
|
2016-10-14 16:57:58 +02:00
|
|
|
reinterpret_cast<void**>(&pCon));
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2012-09-22 01:51:12 -05:00
|
|
|
osl_atomic_decrement( &m_refCount );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
OConnection::~OConnection()
|
|
|
|
{
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
void OConnection::construct(const OUString& url,const Sequence< PropertyValue >& info)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2012-09-22 01:51:12 -05:00
|
|
|
osl_atomic_increment( &m_refCount );
|
2000-09-18 15:18:56 +00:00
|
|
|
|
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);
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString aDSN(url.copy(nLen+1)),aUID,aPWD;
|
2013-03-09 22:47:20 +01:00
|
|
|
if ( aDSN.startsWith("access:") )
|
2004-08-02 15:57:15 +00:00
|
|
|
aDSN = aDSN.copy(7);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
sal_Int32 nTimeout = 20;
|
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
|
|
|
{
|
2016-10-14 16:57:58 +02:00
|
|
|
if(pIter->Name == "Timeout")
|
2008-01-30 06:49:05 +00:00
|
|
|
pIter->Value >>= nTimeout;
|
2016-10-14 16:57:58 +02:00
|
|
|
else if(pIter->Name == "user")
|
2008-01-30 06:49:05 +00:00
|
|
|
pIter->Value >>= aUID;
|
2016-10-14 16:57:58 +02:00
|
|
|
else if(pIter->Name == "password")
|
2008-01-30 06:49:05 +00:00
|
|
|
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())
|
|
|
|
{
|
2014-02-18 13:08:41 +01:00
|
|
|
OTools::putValue(aProps,OUString("Jet OLEDB:ODBC Parsing"),true);
|
2013-04-07 12:06:47 +02:00
|
|
|
OLEVariant aVar(OTools::getValue(aProps,OUString("Jet OLEDB:Engine Type")));
|
2008-12-10 13:41:25 +00:00
|
|
|
if(!aVar.isNull() && !aVar.isEmpty())
|
2016-10-11 18:16:52 +02:00
|
|
|
m_nEngineType = aVar.getInt32();
|
2008-12-10 13:41:25 +00:00
|
|
|
}
|
|
|
|
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
|
|
|
|
|
|
|
}
|
2011-02-10 14:48:51 +01:00
|
|
|
catch(const Exception& )
|
2008-12-10 13:41:25 +00:00
|
|
|
{
|
2012-09-22 01:51:12 -05:00
|
|
|
osl_atomic_decrement( &m_refCount );
|
2008-12-10 13:41:25 +00:00
|
|
|
throw;
|
|
|
|
}
|
2012-09-22 01:51:12 -05:00
|
|
|
osl_atomic_decrement( &m_refCount );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
Reference< XStatement > SAL_CALL OConnection::createStatement( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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;
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
Reference< XPreparedStatement > SAL_CALL OConnection::prepareStatement( const OUString& sql )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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
|
|
|
|
2016-11-22 17:40:18 +01:00
|
|
|
OPreparedStatement* pStmt = new OPreparedStatement(this, sql);
|
2000-09-18 15:18:56 +00:00
|
|
|
Reference< XPreparedStatement > xPStmt = pStmt;
|
|
|
|
m_aStatements.push_back(WeakReferenceHelper(*pStmt));
|
|
|
|
return xPStmt;
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
Reference< XPreparedStatement > SAL_CALL OConnection::prepareCall( const OUString& sql )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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
|
|
|
|
2016-11-22 17:40:18 +01:00
|
|
|
OCallableStatement* pStmt = new OCallableStatement(this, sql);
|
2000-09-18 15:18:56 +00:00
|
|
|
Reference< XPreparedStatement > xPStmt = pStmt;
|
|
|
|
m_aStatements.push_back(WeakReferenceHelper(*pStmt));
|
|
|
|
return xPStmt;
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
OUString SAL_CALL OConnection::nativeSQL( const OUString& _sql )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
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
|
|
|
{
|
2014-02-18 13:08:41 +01:00
|
|
|
OTools::putValue(aProps,OUString("Jet OLEDB:ODBC Parsing"),true);
|
2002-01-18 15:35:28 +00:00
|
|
|
WpADOCommand aCommand;
|
|
|
|
aCommand.Create();
|
2016-10-14 16:57:58 +02:00
|
|
|
aCommand.put_ActiveConnection(static_cast<IDispatch*>(*m_pAdoConnection));
|
2002-01-18 15:35:28 +00:00
|
|
|
aCommand.put_CommandText(sql);
|
|
|
|
sql = aCommand.get_CommandText();
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return sql;
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
void SAL_CALL OConnection::setAutoCommit( sal_Bool autoCommit )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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();
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
sal_Bool SAL_CALL OConnection::getAutoCommit( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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;
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
void SAL_CALL OConnection::commit( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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();
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
void SAL_CALL OConnection::rollback( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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();
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
sal_Bool SAL_CALL OConnection::isClosed( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
return OConnection_BASE::rBHelper.bDisposed && !m_pAdoConnection->get_State();
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
Reference< XDatabaseMetaData > SAL_CALL OConnection::getMetaData( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
void SAL_CALL OConnection::setReadOnly( sal_Bool readOnly )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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);
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
sal_Bool SAL_CALL OConnection::isReadOnly( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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;
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
void SAL_CALL OConnection::setCatalog( const OUString& catalog )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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);
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
OUString SAL_CALL OConnection::getCatalog( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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();
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
void SAL_CALL OConnection::setTransactionIsolation( sal_Int32 level )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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:
|
2011-03-12 12:08:22 +01:00
|
|
|
OSL_FAIL("OConnection::setTransactionIsolation invalid level");
|
2000-09-18 15:18:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_pAdoConnection->put_IsolationLevel(eIso);
|
|
|
|
ADOS::ThrowException(*m_pAdoConnection,*this);
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
sal_Int32 SAL_CALL OConnection::getTransactionIsolation( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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:
|
2011-03-12 12:08:22 +01:00
|
|
|
OSL_FAIL("OConnection::setTransactionIsolation invalid level");
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
ADOS::ThrowException(*m_pAdoConnection,*this);
|
|
|
|
return nRet;
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
Reference< css::container::XNameAccess > SAL_CALL OConnection::getTypeMap( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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
|
|
|
|
2016-10-14 16:57:58 +02:00
|
|
|
return nullptr;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
void SAL_CALL OConnection::setTypeMap( const Reference< css::container::XNameAccess >& /*typeMap*/ )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2014-07-21 10:40:45 +01:00
|
|
|
::dbtools::throwFeatureNotImplementedSQLException( "XConnection::setTypeMap", *this );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
// XCloseable
|
2017-01-26 12:28:58 +01:00
|
|
|
void SAL_CALL OConnection::close( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
{
|
|
|
|
::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();
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
// XWarningsSupplier
|
2017-01-26 12:28:58 +01:00
|
|
|
Any SAL_CALL OConnection::getWarnings( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
return Any();
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
void SAL_CALL OConnection::clearWarnings( )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
void OConnection::buildTypeInfo()
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
::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
|
|
|
|
2016-10-14 16:57:58 +02:00
|
|
|
bool bOk = true;
|
2002-11-29 11:24:20 +00:00
|
|
|
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
|
2014-11-03 14:03:54 +02:00
|
|
|
static const char s_sVarChar[] = "VarChar";
|
2002-11-29 11:24:20 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
sal_Int32 nPos = 1;
|
2017-03-14 14:42:35 +01:00
|
|
|
OExtendedTypeInfo* aInfo = new OExtendedTypeInfo;
|
2016-10-11 18:16:52 +02:00
|
|
|
aInfo->aSimpleType.aTypeName = ADOS::getField(pRecordset,nPos++).get_Value().getString();
|
2018-01-22 13:11:34 +01:00
|
|
|
aInfo->eType = static_cast<DataTypeEnum>(ADOS::getField(pRecordset,nPos++).get_Value().getInt32());
|
2004-08-02 15:57:15 +00:00
|
|
|
if ( aInfo->eType == adWChar && aInfo->aSimpleType.aTypeName == s_sVarChar )
|
|
|
|
aInfo->eType = adVarWChar;
|
2018-01-22 13:11:34 +01:00
|
|
|
aInfo->aSimpleType.nType = static_cast<sal_Int16>(ADOS::MapADOType2Jdbc(aInfo->eType));
|
2016-10-11 18:16:52 +02:00
|
|
|
aInfo->aSimpleType.nPrecision = ADOS::getField(pRecordset,nPos++).get_Value().getInt32();
|
2017-07-04 12:01:56 +02:00
|
|
|
nPos++; // aLiteralPrefix
|
|
|
|
nPos++; // aLiteralSuffix
|
|
|
|
nPos++; // aCreateParams
|
|
|
|
nPos++; // bNullable
|
|
|
|
nPos++; // bCaseSensitive
|
|
|
|
nPos++; // nSearchType
|
|
|
|
nPos++; // bUnsigned
|
|
|
|
nPos++; // bCurrency
|
|
|
|
nPos++; // bAutoIncrement
|
2016-10-11 18:16:52 +02:00
|
|
|
aInfo->aSimpleType.aLocalTypeName = ADOS::getField(pRecordset,nPos++).get_Value().getString();
|
2017-07-04 12:01:56 +02:00
|
|
|
nPos++; // nMinimumScale
|
2016-10-11 18:16:52 +02:00
|
|
|
aInfo->aSimpleType.nMaximumScale = ADOS::getField(pRecordset,nPos++).get_Value().getInt16();
|
2011-01-03 13:56:33 +01:00
|
|
|
if ( adCurrency == aInfo->eType && !aInfo->aSimpleType.nMaximumScale)
|
|
|
|
{
|
|
|
|
aInfo->aSimpleType.nMaximumScale = 4;
|
|
|
|
}
|
2017-07-04 12:01:56 +02:00
|
|
|
nPos++; // nNumPrecRadix
|
2002-11-29 11:24:20 +00:00
|
|
|
// Now that we have the type info, save it
|
|
|
|
// in the Hashtable if we don't already have an
|
|
|
|
// entry for this SQL type.
|
|
|
|
|
2017-08-10 16:43:55 +02:00
|
|
|
m_aTypeInfo.emplace(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
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
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
|
|
|
|
2016-10-14 16:57:58 +02:00
|
|
|
m_bClosed = true;
|
2016-05-27 12:31:29 +02:00
|
|
|
m_xMetaData = css::uno::WeakReference< css::sdbc::XDatabaseMetaData>();
|
|
|
|
m_xCatalog = css::uno::WeakReference< css::sdbcx::XTablesSupplier>();
|
2016-10-14 16:57:58 +02:00
|
|
|
m_pDriver = nullptr;
|
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;
|
2016-10-14 16:57:58 +02:00
|
|
|
m_pAdoConnection = nullptr;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
sal_Int64 SAL_CALL OConnection::getSomething( const css::uno::Sequence< sal_Int8 >& rId )
|
2001-04-27 09:08:14 +00:00
|
|
|
{
|
2012-08-05 19:01:37 +02:00
|
|
|
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
|
2001-08-24 05:19:41 +00:00
|
|
|
?
|
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
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2001-04-27 09:08:14 +00:00
|
|
|
Sequence< sal_Int8 > OConnection::getUnoTunnelImplementationId()
|
|
|
|
{
|
2017-06-12 02:12:56 +02:00
|
|
|
static ::cppu::OImplementationId implId;
|
|
|
|
|
|
|
|
return implId.getImplementationId();
|
2001-04-27 09:08:14 +00:00
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
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,
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString& _sTypeName,
|
2002-07-22 09:06:14 +00:00
|
|
|
sal_Int32 _nPrecision,
|
|
|
|
sal_Int32 _nScale,
|
2016-10-14 16:57:58 +02:00
|
|
|
bool& _brForceToType)
|
2002-07-22 09:06:14 +00:00
|
|
|
{
|
2016-10-14 16:57:58 +02:00
|
|
|
const OExtendedTypeInfo* pTypeInfo = nullptr;
|
|
|
|
_brForceToType = false;
|
2002-07-22 09:06:14 +00:00
|
|
|
// search for type
|
2017-02-15 23:55:18 +02:00
|
|
|
std::pair<OTypeInfoMap::const_iterator, OTypeInfoMap::const_iterator> aPair = _rTypeInfo.equal_range(_nType);
|
2002-07-22 09:06:14 +00:00
|
|
|
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
|
|
|
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
|
|
|
|
/*
|
2013-04-07 12:06:47 +02:00
|
|
|
OSL_FAIL(( OString("getTypeInfoFromType: assuming column type ")
|
|
|
|
+= OString(aIter->second->aTypeName.getStr(), aIter->second->aTypeName.getLength(), osl_getThreadTextEncoding())
|
|
|
|
+= OString("\" (expected type name ")
|
|
|
|
+= OString(_sTypeName.getStr(), _sTypeName.getLength(), osl_getThreadTextEncoding())
|
|
|
|
+= OString(" matches the type's local name).")).getStr());
|
2002-07-22 09:06:14 +00:00
|
|
|
*/
|
|
|
|
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;
|
2016-10-14 16:57:58 +02:00
|
|
|
_brForceToType = true;
|
2002-07-22 09:06:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
pTypeInfo = aIter->second;
|
|
|
|
}
|
2004-03-02 11:32:56 +00:00
|
|
|
else if ( _sTypeName.getLength() )
|
2002-07-22 09:06:14 +00:00
|
|
|
{
|
2016-10-14 16:57:58 +02:00
|
|
|
::comphelper::UStringMixEqual aCase(false);
|
2002-07-22 09:06:14 +00:00
|
|
|
// search for typeinfo where the typename is equal _sTypeName
|
2017-02-15 23:55:18 +02:00
|
|
|
OTypeInfoMap::const_iterator aFind = std::find_if(_rTypeInfo.begin(), _rTypeInfo.end(),
|
2015-08-01 12:36:33 -07:00
|
|
|
[&aCase, &_sTypeName] (const OTypeInfoMap::value_type& typeInfo) {
|
2015-07-10 21:07:51 -07:00
|
|
|
return aCase(typeInfo.second->getDBName(), _sTypeName);
|
|
|
|
});
|
|
|
|
|
2002-07-22 09:06:14 +00:00
|
|
|
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;
|
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2002-07-22 09:06:14 +00:00
|
|
|
|
2010-10-12 15:53:47 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|