Files
libreoffice/connectivity/source/drivers/ado/AConnection.cxx

588 lines
19 KiB
C++
Raw Normal View History

/* -*- 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
#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>
#include <connectivity/dbexception.hxx>
#include <osl/file.hxx>
#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;
using namespace com::sun::star::sdbcx;
2000-09-18 15:18:56 +00:00
2000-09-18 15:18:56 +00:00
IMPLEMENT_SERVICE_INFO(OConnection,"com.sun.star.sdbcx.AConnection","com.sun.star.sdbc.Connection");
OConnection::OConnection(ODriver* _pDriver)
: m_xCatalog(nullptr),
2000-09-18 15:18:56 +00:00
m_pDriver(_pDriver),
m_pAdoConnection(nullptr),
m_pCatalog(nullptr),
m_nEngineType(0),
m_bClosed(false),
m_bAutocommit(true)
2000-09-18 15:18:56 +00:00
{
osl_atomic_increment( &m_refCount );
2000-09-18 15:18:56 +00:00
IClassFactory2* pIUnknown = nullptr;
2000-09-18 15:18:56 +00:00
HRESULT hr;
hr = CoGetClassObject( ADOS::CLSID_ADOCONNECTION_21,
CLSCTX_INPROC_SERVER,
nullptr,
2000-09-18 15:18:56 +00:00
IID_IClassFactory2,
reinterpret_cast<void**>(&pIUnknown) );
2000-09-18 15:18:56 +00:00
if( !FAILED( hr ) )
{
ADOConnection *pCon = nullptr;
IUnknown *pOuter = nullptr;
2000-09-18 15:18:56 +00:00
hr = pIUnknown->CreateInstanceLic( pOuter,
nullptr,
2000-09-18 15:18:56 +00:00
ADOS::IID_ADOCONNECTION_21,
ADOS::GetKeyStr().asBSTR(),
reinterpret_cast<void**>(&pCon));
2000-09-18 15:18:56 +00:00
if( !FAILED( hr ) )
{
OSL_ENSURE( pCon, "OConnection::OConnection: invalid ADO object!" );
2000-09-18 15:18:56 +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
}
// Class Factory is no longer needed
2000-09-18 15:18:56 +00:00
pIUnknown->Release();
}
osl_atomic_decrement( &m_refCount );
2000-09-18 15:18:56 +00:00
}
2000-09-18 15:18:56 +00:00
OConnection::~OConnection()
{
}
void OConnection::construct(const OUString& url,const Sequence< PropertyValue >& info)
2000-09-18 15:18:56 +00:00
{
osl_atomic_increment( &m_refCount );
2000-09-18 15:18:56 +00:00
setConnectionInfo(info);
2000-09-18 15:18:56 +00:00
sal_Int32 nLen = url.indexOf(':');
nLen = url.indexOf(':',nLen+1);
OUString aDSN(url.copy(nLen+1)),aUID,aPWD;
if ( aDSN.startsWith("access:") )
aDSN = aDSN.copy(7);
2000-09-18 15:18:56 +00:00
sal_Int32 nTimeout = 20;
const PropertyValue *pIter = info.getConstArray();
const PropertyValue *pEnd = pIter + info.getLength();
for(;pIter != pEnd;++pIter)
2000-09-18 15:18:56 +00:00
{
if(pIter->Name == "Timeout")
pIter->Value >>= nTimeout;
else if(pIter->Name == "user")
pIter->Value >>= aUID;
else if(pIter->Name == "password")
pIter->Value >>= aPWD;
2000-09-18 15:18:56 +00:00
}
CWS-TOOLING: integrate CWS dba31f 2008-12-10 14:16:09 +0100 oj r265185 : #i96658# remove is 2008-12-10 08:46:07 +0100 oj r265147 : remove duplicate ids 2008-12-10 08:35:02 +0100 oj r265146 : #i96658# remove is 2008-12-09 11:44:35 +0100 oj r265072 : use of tools::StringresourceList 2008-12-09 11:43:41 +0100 oj r265071 : new class to read string elements from a Resource 2008-12-09 11:41:56 +0100 oj r265070 : export StringListResource 2008-12-09 11:38:17 +0100 oj r265068 : change string ; to more string objects 2008-12-08 12:11:43 +0100 oj r264985 : change default-license-id to lic-en-US 2008-12-05 12:06:09 +0100 oj r264896 : disable check to uncheck 2008-12-04 08:58:50 +0100 oj r264814 : #i96517,i96520,i96522# d&d, background, state fixed 2008-12-04 08:53:29 +0100 oj r264813 : #i96434# use document ui name from filter 2008-12-04 08:41:06 +0100 oj r264812 : #i96434# use document ui name from filter 2008-12-02 13:48:49 +0100 lla r264697 : #i96526# extra string for default otr wasn't found 2008-11-28 11:46:31 +0100 oj r264536 : move toolbar and resize add field dlg 2008-11-28 08:38:22 +0100 oj r264526 : load string resources 2008-11-27 19:28:52 +0100 oj r264520 : unsigned 2008-11-27 19:10:19 +0100 oj r264517 : move class into unnamed namespace 2008-11-27 18:33:38 +0100 oj r264514 : wrong param 2008-11-27 16:52:39 +0100 oj r264510 : #i96622# wrong string replacement 2008-11-27 16:46:03 +0100 oj r264509 : remove unused var 2008-11-27 13:37:16 +0100 oj r264484 : #i96432# notify only when not in special mode of the page 2008-11-27 13:16:47 +0100 oj r264479 : #i95224# accept alias in group by 2008-11-27 12:35:19 +0100 oj r264477 : #i95416# always show localized strings in the start marker 2008-11-27 09:49:29 +0100 oj r264455 : #i93460# set split pos 2008-11-27 09:05:27 +0100 oj r264447 : #i96453# use extension from mimetype / mediatype 2008-11-26 16:24:43 +0100 oj r264416 : #i96520# #i96522# #i96519# some changes at the add field dialog 2008-11-26 16:20:27 +0100 oj r264414 : #i93420# prevent to register a none system file url 2008-11-26 16:19:02 +0100 oj r264413 : #i96522# new class to paste multiple objects 2008-11-26 10:06:12 +0100 oj r264349 : #i96191# introduce new error message and check if type was defined aand should not be changed 2008-11-26 10:06:12 +0100 oj r264348 : #i96191# throw error when decimal is to big 2008-11-25 12:08:59 +0100 oj r264281 : #i96431# correct state for align and move 2008-11-25 11:54:47 +0100 oj r264280 : #i96428# when new bind to first table 2008-11-25 11:49:55 +0100 oj r264279 : #i96434# add report output format to inspection 2008-11-25 11:49:05 +0100 oj r264278 : #i96434# add report output format to inspection 2008-11-24 10:46:23 +0100 oj r264215 : #i96458# size width for controls 2008-11-24 09:28:56 +0100 oj r264199 : #i96459# mark detail section when nothing is selected 2008-11-20 12:02:35 +0100 oj r264038 : #i96191# fix check for prec 2008-11-20 08:06:32 +0100 oj r264026 : #i90949# patch MID function 2008-11-11 13:14:58 +0100 oj r263555 : #i96086# apply patch 2008-11-11 11:34:46 +0100 oj r263549 : #i94128# correct height of section when controls moved outside 2008-11-11 07:52:08 +0100 oj r263544 : #i94729# fix string with ; as sep 2008-11-11 07:45:27 +0100 oj r263543 : #i95222# export chart title style 2008-11-11 07:43:37 +0100 oj r263542 : #i92541# fix line height
2008-12-10 13:41:25 +00:00
try
2000-09-18 15:18:56 +00:00
{
CWS-TOOLING: integrate CWS dba31f 2008-12-10 14:16:09 +0100 oj r265185 : #i96658# remove is 2008-12-10 08:46:07 +0100 oj r265147 : remove duplicate ids 2008-12-10 08:35:02 +0100 oj r265146 : #i96658# remove is 2008-12-09 11:44:35 +0100 oj r265072 : use of tools::StringresourceList 2008-12-09 11:43:41 +0100 oj r265071 : new class to read string elements from a Resource 2008-12-09 11:41:56 +0100 oj r265070 : export StringListResource 2008-12-09 11:38:17 +0100 oj r265068 : change string ; to more string objects 2008-12-08 12:11:43 +0100 oj r264985 : change default-license-id to lic-en-US 2008-12-05 12:06:09 +0100 oj r264896 : disable check to uncheck 2008-12-04 08:58:50 +0100 oj r264814 : #i96517,i96520,i96522# d&d, background, state fixed 2008-12-04 08:53:29 +0100 oj r264813 : #i96434# use document ui name from filter 2008-12-04 08:41:06 +0100 oj r264812 : #i96434# use document ui name from filter 2008-12-02 13:48:49 +0100 lla r264697 : #i96526# extra string for default otr wasn't found 2008-11-28 11:46:31 +0100 oj r264536 : move toolbar and resize add field dlg 2008-11-28 08:38:22 +0100 oj r264526 : load string resources 2008-11-27 19:28:52 +0100 oj r264520 : unsigned 2008-11-27 19:10:19 +0100 oj r264517 : move class into unnamed namespace 2008-11-27 18:33:38 +0100 oj r264514 : wrong param 2008-11-27 16:52:39 +0100 oj r264510 : #i96622# wrong string replacement 2008-11-27 16:46:03 +0100 oj r264509 : remove unused var 2008-11-27 13:37:16 +0100 oj r264484 : #i96432# notify only when not in special mode of the page 2008-11-27 13:16:47 +0100 oj r264479 : #i95224# accept alias in group by 2008-11-27 12:35:19 +0100 oj r264477 : #i95416# always show localized strings in the start marker 2008-11-27 09:49:29 +0100 oj r264455 : #i93460# set split pos 2008-11-27 09:05:27 +0100 oj r264447 : #i96453# use extension from mimetype / mediatype 2008-11-26 16:24:43 +0100 oj r264416 : #i96520# #i96522# #i96519# some changes at the add field dialog 2008-11-26 16:20:27 +0100 oj r264414 : #i93420# prevent to register a none system file url 2008-11-26 16:19:02 +0100 oj r264413 : #i96522# new class to paste multiple objects 2008-11-26 10:06:12 +0100 oj r264349 : #i96191# introduce new error message and check if type was defined aand should not be changed 2008-11-26 10:06:12 +0100 oj r264348 : #i96191# throw error when decimal is to big 2008-11-25 12:08:59 +0100 oj r264281 : #i96431# correct state for align and move 2008-11-25 11:54:47 +0100 oj r264280 : #i96428# when new bind to first table 2008-11-25 11:49:55 +0100 oj r264279 : #i96434# add report output format to inspection 2008-11-25 11:49:05 +0100 oj r264278 : #i96434# add report output format to inspection 2008-11-24 10:46:23 +0100 oj r264215 : #i96458# size width for controls 2008-11-24 09:28:56 +0100 oj r264199 : #i96459# mark detail section when nothing is selected 2008-11-20 12:02:35 +0100 oj r264038 : #i96191# fix check for prec 2008-11-20 08:06:32 +0100 oj r264026 : #i90949# patch MID function 2008-11-11 13:14:58 +0100 oj r263555 : #i96086# apply patch 2008-11-11 11:34:46 +0100 oj r263549 : #i94128# correct height of section when controls moved outside 2008-11-11 07:52:08 +0100 oj r263544 : #i94729# fix string with ; as sep 2008-11-11 07:45:27 +0100 oj r263543 : #i95222# export chart title style 2008-11-11 07:43:37 +0100 oj r263542 : #i92541# fix line height
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,OUString("Jet OLEDB:ODBC Parsing"),true);
OLEVariant aVar(OTools::getValue(aProps,OUString("Jet OLEDB:Engine Type")));
CWS-TOOLING: integrate CWS dba31f 2008-12-10 14:16:09 +0100 oj r265185 : #i96658# remove is 2008-12-10 08:46:07 +0100 oj r265147 : remove duplicate ids 2008-12-10 08:35:02 +0100 oj r265146 : #i96658# remove is 2008-12-09 11:44:35 +0100 oj r265072 : use of tools::StringresourceList 2008-12-09 11:43:41 +0100 oj r265071 : new class to read string elements from a Resource 2008-12-09 11:41:56 +0100 oj r265070 : export StringListResource 2008-12-09 11:38:17 +0100 oj r265068 : change string ; to more string objects 2008-12-08 12:11:43 +0100 oj r264985 : change default-license-id to lic-en-US 2008-12-05 12:06:09 +0100 oj r264896 : disable check to uncheck 2008-12-04 08:58:50 +0100 oj r264814 : #i96517,i96520,i96522# d&d, background, state fixed 2008-12-04 08:53:29 +0100 oj r264813 : #i96434# use document ui name from filter 2008-12-04 08:41:06 +0100 oj r264812 : #i96434# use document ui name from filter 2008-12-02 13:48:49 +0100 lla r264697 : #i96526# extra string for default otr wasn't found 2008-11-28 11:46:31 +0100 oj r264536 : move toolbar and resize add field dlg 2008-11-28 08:38:22 +0100 oj r264526 : load string resources 2008-11-27 19:28:52 +0100 oj r264520 : unsigned 2008-11-27 19:10:19 +0100 oj r264517 : move class into unnamed namespace 2008-11-27 18:33:38 +0100 oj r264514 : wrong param 2008-11-27 16:52:39 +0100 oj r264510 : #i96622# wrong string replacement 2008-11-27 16:46:03 +0100 oj r264509 : remove unused var 2008-11-27 13:37:16 +0100 oj r264484 : #i96432# notify only when not in special mode of the page 2008-11-27 13:16:47 +0100 oj r264479 : #i95224# accept alias in group by 2008-11-27 12:35:19 +0100 oj r264477 : #i95416# always show localized strings in the start marker 2008-11-27 09:49:29 +0100 oj r264455 : #i93460# set split pos 2008-11-27 09:05:27 +0100 oj r264447 : #i96453# use extension from mimetype / mediatype 2008-11-26 16:24:43 +0100 oj r264416 : #i96520# #i96522# #i96519# some changes at the add field dialog 2008-11-26 16:20:27 +0100 oj r264414 : #i93420# prevent to register a none system file url 2008-11-26 16:19:02 +0100 oj r264413 : #i96522# new class to paste multiple objects 2008-11-26 10:06:12 +0100 oj r264349 : #i96191# introduce new error message and check if type was defined aand should not be changed 2008-11-26 10:06:12 +0100 oj r264348 : #i96191# throw error when decimal is to big 2008-11-25 12:08:59 +0100 oj r264281 : #i96431# correct state for align and move 2008-11-25 11:54:47 +0100 oj r264280 : #i96428# when new bind to first table 2008-11-25 11:49:55 +0100 oj r264279 : #i96434# add report output format to inspection 2008-11-25 11:49:05 +0100 oj r264278 : #i96434# add report output format to inspection 2008-11-24 10:46:23 +0100 oj r264215 : #i96458# size width for controls 2008-11-24 09:28:56 +0100 oj r264199 : #i96459# mark detail section when nothing is selected 2008-11-20 12:02:35 +0100 oj r264038 : #i96191# fix check for prec 2008-11-20 08:06:32 +0100 oj r264026 : #i90949# patch MID function 2008-11-11 13:14:58 +0100 oj r263555 : #i96086# apply patch 2008-11-11 11:34:46 +0100 oj r263549 : #i94128# correct height of section when controls moved outside 2008-11-11 07:52:08 +0100 oj r263544 : #i94729# fix string with ; as sep 2008-11-11 07:45:27 +0100 oj r263543 : #i95222# export chart title style 2008-11-11 07:43:37 +0100 oj r263542 : #i92541# fix line height
2008-12-10 13:41:25 +00:00
if(!aVar.isNull() && !aVar.isEmpty())
m_nEngineType = aVar.getInt32();
CWS-TOOLING: integrate CWS dba31f 2008-12-10 14:16:09 +0100 oj r265185 : #i96658# remove is 2008-12-10 08:46:07 +0100 oj r265147 : remove duplicate ids 2008-12-10 08:35:02 +0100 oj r265146 : #i96658# remove is 2008-12-09 11:44:35 +0100 oj r265072 : use of tools::StringresourceList 2008-12-09 11:43:41 +0100 oj r265071 : new class to read string elements from a Resource 2008-12-09 11:41:56 +0100 oj r265070 : export StringListResource 2008-12-09 11:38:17 +0100 oj r265068 : change string ; to more string objects 2008-12-08 12:11:43 +0100 oj r264985 : change default-license-id to lic-en-US 2008-12-05 12:06:09 +0100 oj r264896 : disable check to uncheck 2008-12-04 08:58:50 +0100 oj r264814 : #i96517,i96520,i96522# d&d, background, state fixed 2008-12-04 08:53:29 +0100 oj r264813 : #i96434# use document ui name from filter 2008-12-04 08:41:06 +0100 oj r264812 : #i96434# use document ui name from filter 2008-12-02 13:48:49 +0100 lla r264697 : #i96526# extra string for default otr wasn't found 2008-11-28 11:46:31 +0100 oj r264536 : move toolbar and resize add field dlg 2008-11-28 08:38:22 +0100 oj r264526 : load string resources 2008-11-27 19:28:52 +0100 oj r264520 : unsigned 2008-11-27 19:10:19 +0100 oj r264517 : move class into unnamed namespace 2008-11-27 18:33:38 +0100 oj r264514 : wrong param 2008-11-27 16:52:39 +0100 oj r264510 : #i96622# wrong string replacement 2008-11-27 16:46:03 +0100 oj r264509 : remove unused var 2008-11-27 13:37:16 +0100 oj r264484 : #i96432# notify only when not in special mode of the page 2008-11-27 13:16:47 +0100 oj r264479 : #i95224# accept alias in group by 2008-11-27 12:35:19 +0100 oj r264477 : #i95416# always show localized strings in the start marker 2008-11-27 09:49:29 +0100 oj r264455 : #i93460# set split pos 2008-11-27 09:05:27 +0100 oj r264447 : #i96453# use extension from mimetype / mediatype 2008-11-26 16:24:43 +0100 oj r264416 : #i96520# #i96522# #i96519# some changes at the add field dialog 2008-11-26 16:20:27 +0100 oj r264414 : #i93420# prevent to register a none system file url 2008-11-26 16:19:02 +0100 oj r264413 : #i96522# new class to paste multiple objects 2008-11-26 10:06:12 +0100 oj r264349 : #i96191# introduce new error message and check if type was defined aand should not be changed 2008-11-26 10:06:12 +0100 oj r264348 : #i96191# throw error when decimal is to big 2008-11-25 12:08:59 +0100 oj r264281 : #i96431# correct state for align and move 2008-11-25 11:54:47 +0100 oj r264280 : #i96428# when new bind to first table 2008-11-25 11:49:55 +0100 oj r264279 : #i96434# add report output format to inspection 2008-11-25 11:49:05 +0100 oj r264278 : #i96434# add report output format to inspection 2008-11-24 10:46:23 +0100 oj r264215 : #i96458# size width for controls 2008-11-24 09:28:56 +0100 oj r264199 : #i96459# mark detail section when nothing is selected 2008-11-20 12:02:35 +0100 oj r264038 : #i96191# fix check for prec 2008-11-20 08:06:32 +0100 oj r264026 : #i90949# patch MID function 2008-11-11 13:14:58 +0100 oj r263555 : #i96086# apply patch 2008-11-11 11:34:46 +0100 oj r263549 : #i94128# correct height of section when controls moved outside 2008-11-11 07:52:08 +0100 oj r263544 : #i94729# fix string with ; as sep 2008-11-11 07:45:27 +0100 oj r263543 : #i95222# export chart title style 2008-11-11 07:43:37 +0100 oj r263542 : #i92541# fix line height
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& )
CWS-TOOLING: integrate CWS dba31f 2008-12-10 14:16:09 +0100 oj r265185 : #i96658# remove is 2008-12-10 08:46:07 +0100 oj r265147 : remove duplicate ids 2008-12-10 08:35:02 +0100 oj r265146 : #i96658# remove is 2008-12-09 11:44:35 +0100 oj r265072 : use of tools::StringresourceList 2008-12-09 11:43:41 +0100 oj r265071 : new class to read string elements from a Resource 2008-12-09 11:41:56 +0100 oj r265070 : export StringListResource 2008-12-09 11:38:17 +0100 oj r265068 : change string ; to more string objects 2008-12-08 12:11:43 +0100 oj r264985 : change default-license-id to lic-en-US 2008-12-05 12:06:09 +0100 oj r264896 : disable check to uncheck 2008-12-04 08:58:50 +0100 oj r264814 : #i96517,i96520,i96522# d&d, background, state fixed 2008-12-04 08:53:29 +0100 oj r264813 : #i96434# use document ui name from filter 2008-12-04 08:41:06 +0100 oj r264812 : #i96434# use document ui name from filter 2008-12-02 13:48:49 +0100 lla r264697 : #i96526# extra string for default otr wasn't found 2008-11-28 11:46:31 +0100 oj r264536 : move toolbar and resize add field dlg 2008-11-28 08:38:22 +0100 oj r264526 : load string resources 2008-11-27 19:28:52 +0100 oj r264520 : unsigned 2008-11-27 19:10:19 +0100 oj r264517 : move class into unnamed namespace 2008-11-27 18:33:38 +0100 oj r264514 : wrong param 2008-11-27 16:52:39 +0100 oj r264510 : #i96622# wrong string replacement 2008-11-27 16:46:03 +0100 oj r264509 : remove unused var 2008-11-27 13:37:16 +0100 oj r264484 : #i96432# notify only when not in special mode of the page 2008-11-27 13:16:47 +0100 oj r264479 : #i95224# accept alias in group by 2008-11-27 12:35:19 +0100 oj r264477 : #i95416# always show localized strings in the start marker 2008-11-27 09:49:29 +0100 oj r264455 : #i93460# set split pos 2008-11-27 09:05:27 +0100 oj r264447 : #i96453# use extension from mimetype / mediatype 2008-11-26 16:24:43 +0100 oj r264416 : #i96520# #i96522# #i96519# some changes at the add field dialog 2008-11-26 16:20:27 +0100 oj r264414 : #i93420# prevent to register a none system file url 2008-11-26 16:19:02 +0100 oj r264413 : #i96522# new class to paste multiple objects 2008-11-26 10:06:12 +0100 oj r264349 : #i96191# introduce new error message and check if type was defined aand should not be changed 2008-11-26 10:06:12 +0100 oj r264348 : #i96191# throw error when decimal is to big 2008-11-25 12:08:59 +0100 oj r264281 : #i96431# correct state for align and move 2008-11-25 11:54:47 +0100 oj r264280 : #i96428# when new bind to first table 2008-11-25 11:49:55 +0100 oj r264279 : #i96434# add report output format to inspection 2008-11-25 11:49:05 +0100 oj r264278 : #i96434# add report output format to inspection 2008-11-24 10:46:23 +0100 oj r264215 : #i96458# size width for controls 2008-11-24 09:28:56 +0100 oj r264199 : #i96459# mark detail section when nothing is selected 2008-11-20 12:02:35 +0100 oj r264038 : #i96191# fix check for prec 2008-11-20 08:06:32 +0100 oj r264026 : #i90949# patch MID function 2008-11-11 13:14:58 +0100 oj r263555 : #i96086# apply patch 2008-11-11 11:34:46 +0100 oj r263549 : #i94128# correct height of section when controls moved outside 2008-11-11 07:52:08 +0100 oj r263544 : #i94729# fix string with ; as sep 2008-11-11 07:45:27 +0100 oj r263543 : #i95222# export chart title style 2008-11-11 07:43:37 +0100 oj r263542 : #i92541# fix line height
2008-12-10 13:41:25 +00:00
{
osl_atomic_decrement( &m_refCount );
CWS-TOOLING: integrate CWS dba31f 2008-12-10 14:16:09 +0100 oj r265185 : #i96658# remove is 2008-12-10 08:46:07 +0100 oj r265147 : remove duplicate ids 2008-12-10 08:35:02 +0100 oj r265146 : #i96658# remove is 2008-12-09 11:44:35 +0100 oj r265072 : use of tools::StringresourceList 2008-12-09 11:43:41 +0100 oj r265071 : new class to read string elements from a Resource 2008-12-09 11:41:56 +0100 oj r265070 : export StringListResource 2008-12-09 11:38:17 +0100 oj r265068 : change string ; to more string objects 2008-12-08 12:11:43 +0100 oj r264985 : change default-license-id to lic-en-US 2008-12-05 12:06:09 +0100 oj r264896 : disable check to uncheck 2008-12-04 08:58:50 +0100 oj r264814 : #i96517,i96520,i96522# d&d, background, state fixed 2008-12-04 08:53:29 +0100 oj r264813 : #i96434# use document ui name from filter 2008-12-04 08:41:06 +0100 oj r264812 : #i96434# use document ui name from filter 2008-12-02 13:48:49 +0100 lla r264697 : #i96526# extra string for default otr wasn't found 2008-11-28 11:46:31 +0100 oj r264536 : move toolbar and resize add field dlg 2008-11-28 08:38:22 +0100 oj r264526 : load string resources 2008-11-27 19:28:52 +0100 oj r264520 : unsigned 2008-11-27 19:10:19 +0100 oj r264517 : move class into unnamed namespace 2008-11-27 18:33:38 +0100 oj r264514 : wrong param 2008-11-27 16:52:39 +0100 oj r264510 : #i96622# wrong string replacement 2008-11-27 16:46:03 +0100 oj r264509 : remove unused var 2008-11-27 13:37:16 +0100 oj r264484 : #i96432# notify only when not in special mode of the page 2008-11-27 13:16:47 +0100 oj r264479 : #i95224# accept alias in group by 2008-11-27 12:35:19 +0100 oj r264477 : #i95416# always show localized strings in the start marker 2008-11-27 09:49:29 +0100 oj r264455 : #i93460# set split pos 2008-11-27 09:05:27 +0100 oj r264447 : #i96453# use extension from mimetype / mediatype 2008-11-26 16:24:43 +0100 oj r264416 : #i96520# #i96522# #i96519# some changes at the add field dialog 2008-11-26 16:20:27 +0100 oj r264414 : #i93420# prevent to register a none system file url 2008-11-26 16:19:02 +0100 oj r264413 : #i96522# new class to paste multiple objects 2008-11-26 10:06:12 +0100 oj r264349 : #i96191# introduce new error message and check if type was defined aand should not be changed 2008-11-26 10:06:12 +0100 oj r264348 : #i96191# throw error when decimal is to big 2008-11-25 12:08:59 +0100 oj r264281 : #i96431# correct state for align and move 2008-11-25 11:54:47 +0100 oj r264280 : #i96428# when new bind to first table 2008-11-25 11:49:55 +0100 oj r264279 : #i96434# add report output format to inspection 2008-11-25 11:49:05 +0100 oj r264278 : #i96434# add report output format to inspection 2008-11-24 10:46:23 +0100 oj r264215 : #i96458# size width for controls 2008-11-24 09:28:56 +0100 oj r264199 : #i96459# mark detail section when nothing is selected 2008-11-20 12:02:35 +0100 oj r264038 : #i96191# fix check for prec 2008-11-20 08:06:32 +0100 oj r264026 : #i90949# patch MID function 2008-11-11 13:14:58 +0100 oj r263555 : #i96086# apply patch 2008-11-11 11:34:46 +0100 oj r263549 : #i94128# correct height of section when controls moved outside 2008-11-11 07:52:08 +0100 oj r263544 : #i94729# fix string with ; as sep 2008-11-11 07:45:27 +0100 oj r263543 : #i95222# export chart title style 2008-11-11 07:43:37 +0100 oj r263542 : #i92541# fix line height
2008-12-10 13:41:25 +00:00
throw;
}
osl_atomic_decrement( &m_refCount );
2000-09-18 15:18:56 +00: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;
}
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
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;
}
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
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;
}
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
OUString sql = _sql;
WpADOProperties aProps = m_pAdoConnection->get_Properties();
if(aProps.IsValid())
2000-09-18 15:18:56 +00:00
{
OTools::putValue(aProps,OUString("Jet OLEDB:ODBC Parsing"),true);
WpADOCommand aCommand;
aCommand.Create();
aCommand.put_ActiveConnection(static_cast<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 )
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();
}
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;
}
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();
}
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();
}
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();
}
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
}
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
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( )
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;
}
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);
}
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();
}
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:
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);
}
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:
OSL_FAIL("OConnection::setTransactionIsolation invalid level");
2000-09-18 15:18:56 +00:00
}
ADOS::ThrowException(*m_pAdoConnection,*this);
return nRet;
}
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
return nullptr;
2000-09-18 15:18:56 +00:00
}
void SAL_CALL OConnection::setTypeMap( const Reference< css::container::XNameAccess >& /*typeMap*/ )
2000-09-18 15:18:56 +00:00
{
::dbtools::throwFeatureNotImplementedSQLException( "XConnection::setTypeMap", *this );
2000-09-18 15:18:56 +00:00
}
2000-09-18 15:18:56 +00:00
// XCloseable
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();
}
2000-09-18 15:18:56 +00:00
// XWarningsSupplier
Any SAL_CALL OConnection::getWarnings( )
2000-09-18 15:18:56 +00:00
{
return Any();
}
void SAL_CALL OConnection::clearWarnings( )
2000-09-18 15:18:56 +00:00
{
}
void OConnection::buildTypeInfo()
2000-09-18 15:18:56 +00:00
{
::osl::MutexGuard aGuard( m_aMutex );
ADORecordset *pRecordset = m_pAdoConnection->getTypeInfo();
if ( pRecordset )
2000-09-18 15:18:56 +00:00
{
pRecordset->AddRef();
VARIANT_BOOL bIsAtBOF;
pRecordset->get_BOF(&bIsAtBOF);
2000-09-18 15:18:56 +00:00
bool bOk = true;
if ( bIsAtBOF == VARIANT_TRUE )
bOk = SUCCEEDED(pRecordset->MoveNext());
2000-09-18 15:18:56 +00:00
if ( bOk )
{
// HACK for access
static const char s_sVarChar[] = "VarChar";
do
{
sal_Int32 nPos = 1;
OExtendedTypeInfo* aInfo = new OExtendedTypeInfo;
aInfo->aSimpleType.aTypeName = ADOS::getField(pRecordset,nPos++).get_Value().getString();
aInfo->eType = static_cast<DataTypeEnum>(ADOS::getField(pRecordset,nPos++).get_Value().getInt32());
if ( aInfo->eType == adWChar && aInfo->aSimpleType.aTypeName == s_sVarChar )
aInfo->eType = adVarWChar;
aInfo->aSimpleType.nType = static_cast<sal_Int16>(ADOS::MapADOType2Jdbc(aInfo->eType));
aInfo->aSimpleType.nPrecision = ADOS::getField(pRecordset,nPos++).get_Value().getInt32();
nPos++; // aLiteralPrefix
nPos++; // aLiteralSuffix
nPos++; // aCreateParams
nPos++; // bNullable
nPos++; // bCaseSensitive
nPos++; // nSearchType
nPos++; // bUnsigned
nPos++; // bCurrency
nPos++; // bAutoIncrement
aInfo->aSimpleType.aLocalTypeName = ADOS::getField(pRecordset,nPos++).get_Value().getString();
nPos++; // nMinimumScale
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;
}
nPos++; // nNumPrecRadix
// Now that we have the type info, save it
// in the Hashtable if we don't already have an
// entry for this SQL type.
m_aTypeInfo.emplace(aInfo->eType,aInfo);
}
while ( SUCCEEDED(pRecordset->MoveNext()) );
}
pRecordset->Release();
}
2000-09-18 15:18:56 +00:00
}
2000-09-18 15:18:56 +00:00
void OConnection::disposing()
{
::osl::MutexGuard aGuard(m_aMutex);
OConnection_BASE::disposing();
2000-09-18 15:18:56 +00:00
m_bClosed = true;
m_xMetaData = css::uno::WeakReference< css::sdbc::XDatabaseMetaData>();
m_xCatalog = css::uno::WeakReference< css::sdbcx::XTablesSupplier>();
m_pDriver = nullptr;
2000-09-18 15:18:56 +00:00
m_pAdoConnection->Close();
OTypeInfoMap::iterator aIter = m_aTypeInfo.begin();
for (; aIter != m_aTypeInfo.end(); ++aIter)
delete aIter->second;
m_aTypeInfo.clear();
delete m_pAdoConnection;
m_pAdoConnection = nullptr;
2000-09-18 15:18:56 +00:00
}
sal_Int64 SAL_CALL OConnection::getSomething( const css::uno::Sequence< sal_Int8 >& rId )
2001-04-27 09:08:14 +00:00
{
return (rId.getLength() == 16 && 0 == memcmp(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
?
reinterpret_cast< sal_Int64 >( this )
:
OConnection_BASE::getSomething(rId);
2001-04-27 09:08:14 +00:00
}
2001-04-27 09:08:14 +00:00
Sequence< sal_Int8 > OConnection::getUnoTunnelImplementationId()
{
static ::cppu::OImplementationId implId;
return implId.getImplementationId();
2001-04-27 09:08:14 +00:00
}
const OExtendedTypeInfo* OConnection::getTypeInfoFromType(const OTypeInfoMap& _rTypeInfo,
DataTypeEnum _nType,
const OUString& _sTypeName,
sal_Int32 _nPrecision,
sal_Int32 _nScale,
bool& _brForceToType)
{
const OExtendedTypeInfo* pTypeInfo = nullptr;
_brForceToType = 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
OExtendedTypeInfo* pInfo = aIter->second;
if ( ( !_sTypeName.getLength()
|| (pInfo->aSimpleType.aTypeName.equalsIgnoreAsciiCase(_sTypeName))
)
&& (pInfo->aSimpleType.nPrecision >= _nPrecision)
&& (pInfo->aSimpleType.nMaximumScale >= _nScale)
)
break;
}
if (aIter == aPair.second)
{
for(aIter = aPair.first; aIter != aPair.second; ++aIter)
{
// search the best matching type (now comparing the local names)
if ( (aIter->second->aSimpleType.aLocalTypeName.equalsIgnoreAsciiCase(_sTypeName))
&& (aIter->second->aSimpleType.nPrecision >= _nPrecision)
&& (aIter->second->aSimpleType.nMaximumScale >= _nScale)
)
{
// we can not assert here because we could be in d&d
/*
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());
*/
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 = true;
}
else
pTypeInfo = aIter->second;
}
else if ( _sTypeName.getLength() )
{
::comphelper::UStringMixEqual aCase(false);
// search for typeinfo where the typename is equal _sTypeName
OTypeInfoMap::const_iterator aFind = std::find_if(_rTypeInfo.begin(), _rTypeInfo.end(),
[&aCase, &_sTypeName] (const OTypeInfoMap::value_type& typeInfo) {
return aCase(typeInfo.second->getDBName(), _sTypeName);
});
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;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */