2000-09-18 15:18:56 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 09:26:05 +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 09:26:05 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 09:26:05 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 09:26:05 +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 09:26:05 +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 09:26:05 +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 02:05:16 +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 "odbc/OTools.hxx"
|
|
|
|
#include "odbc/OConnection.hxx"
|
|
|
|
#include "odbc/ODatabaseMetaData.hxx"
|
|
|
|
#include "odbc/OFunctions.hxx"
|
|
|
|
#include "odbc/ODriver.hxx"
|
|
|
|
#include "odbc/OStatement.hxx"
|
|
|
|
#include "odbc/OPreparedStatement.hxx"
|
|
|
|
#include <com/sun/star/sdbc/ColumnValue.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
2001-02-05 11:26:42 +00:00
|
|
|
#include <connectivity/dbcharset.hxx>
|
2006-01-16 14:04:15 +00:00
|
|
|
#include <connectivity/FValue.hxx>
|
2001-04-20 12:31:58 +00:00
|
|
|
#include <comphelper/extract.hxx>
|
2006-06-20 00:54:35 +00:00
|
|
|
#include "diagnose_ex.h"
|
|
|
|
#include <connectivity/dbexception.hxx>
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2008-02-04 12:30:48 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
using namespace connectivity::odbc;
|
2001-05-14 10:42:44 +00:00
|
|
|
using namespace connectivity;
|
|
|
|
using namespace dbtools;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
using namespace com::sun::star::uno;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
using namespace com::sun::star::beans;
|
|
|
|
using namespace com::sun::star::sdbc;
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
OConnection::OConnection(const SQLHANDLE _pDriverHandle,ODBCDriver* _pDriver)
|
2001-10-29 09:23:34 +00:00
|
|
|
: OSubComponent<OConnection, OConnection_BASE>((::cppu::OWeakObject*)_pDriver, this)
|
|
|
|
,m_pDriver(_pDriver)
|
2006-06-20 00:54:35 +00:00
|
|
|
,m_pDriverHandleCopy(_pDriverHandle)
|
|
|
|
,m_nStatementCount(0)
|
2001-10-29 09:23:34 +00:00
|
|
|
,m_bClosed(sal_True)
|
|
|
|
,m_bUseCatalog(sal_False)
|
|
|
|
,m_bUseOldDateFormat(sal_False)
|
|
|
|
,m_bParameterSubstitution(sal_False)
|
2003-04-11 13:41:09 +00:00
|
|
|
,m_bIgnoreDriverPrivileges(sal_False)
|
2006-02-03 16:14:43 +00:00
|
|
|
,m_bPreventGetVersionColumns(sal_False)
|
2009-09-08 09:50:48 +00:00
|
|
|
,m_bReadOnly(sal_True)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2001-05-30 13:16:09 +00:00
|
|
|
m_pDriver->acquire();
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
OConnection::~OConnection()
|
|
|
|
{
|
|
|
|
if(!isClosed( ))
|
|
|
|
close();
|
2002-01-18 16:10:51 +00:00
|
|
|
|
|
|
|
if ( SQL_NULL_HANDLE != m_aConnectionHandle )
|
|
|
|
N3SQLFreeHandle( SQL_HANDLE_DBC, m_aConnectionHandle );
|
|
|
|
m_aConnectionHandle = SQL_NULL_HANDLE;
|
|
|
|
|
2001-05-30 13:16:09 +00:00
|
|
|
m_pDriver->release();
|
|
|
|
m_pDriver = NULL;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
2001-10-17 13:55:07 +00:00
|
|
|
void SAL_CALL OConnection::release() throw()
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
relase_ChildImpl();
|
|
|
|
}
|
2001-05-15 07:18:32 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2006-06-20 00:54:35 +00:00
|
|
|
oslGenericFunction OConnection::getOdbcFunction(sal_Int32 _nIndex) const
|
2001-05-15 07:18:32 +00:00
|
|
|
{
|
2001-05-30 13:16:09 +00:00
|
|
|
OSL_ENSURE(m_pDriver,"OConnection::getOdbcFunction: m_pDriver is null!");
|
2001-05-15 07:18:32 +00:00
|
|
|
return m_pDriver->getOdbcFunction(_nIndex);
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
SQLRETURN OConnection::OpenConnection(const ::rtl::OUString& aConnectStr,sal_Int32 nTimeOut, sal_Bool bSilent)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
if (m_aConnectionHandle == SQL_NULL_HANDLE)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
SQLRETURN nSQLRETURN = 0;
|
|
|
|
SDB_ODBC_CHAR szConnStrOut[4096];
|
|
|
|
SDB_ODBC_CHAR szConnStrIn[2048];
|
2009-10-01 09:16:17 +00:00
|
|
|
SQLSMALLINT cbConnStrOut;
|
2000-09-18 15:18:56 +00:00
|
|
|
memset(szConnStrOut,'\0',4096);
|
|
|
|
memset(szConnStrIn,'\0',2048);
|
2001-02-05 11:26:42 +00:00
|
|
|
::rtl::OString aConStr(::rtl::OUStringToOString(aConnectStr,getTextEncoding()));
|
2000-09-18 15:18:56 +00:00
|
|
|
memcpy(szConnStrIn, (SDB_ODBC_CHAR*) aConStr.getStr(), ::std::min<sal_Int32>((sal_Int32)2048,aConStr.getLength()));
|
|
|
|
|
2008-06-06 12:23:55 +00:00
|
|
|
#ifndef MACOSX
|
2004-08-02 16:09:02 +00:00
|
|
|
N3SQLSetConnectAttr(m_aConnectionHandle,SQL_ATTR_LOGIN_TIMEOUT,(SQLPOINTER)nTimeOut,SQL_IS_UINTEGER);
|
2000-09-18 15:18:56 +00:00
|
|
|
// Verbindung aufbauen
|
2008-06-06 12:23:55 +00:00
|
|
|
#endif
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
#ifdef LINUX
|
2006-06-20 00:54:35 +00:00
|
|
|
OSL_UNUSED( bSilent );
|
2000-09-18 15:18:56 +00:00
|
|
|
nSQLRETURN = N3SQLDriverConnect(m_aConnectionHandle,
|
|
|
|
NULL,
|
|
|
|
szConnStrIn,
|
|
|
|
(SQLSMALLINT) ::std::min((sal_Int32)2048,aConStr.getLength()),
|
|
|
|
szConnStrOut,
|
2004-01-07 15:03:54 +00:00
|
|
|
(SQLSMALLINT) (sizeof(szConnStrOut)/sizeof(SDB_ODBC_CHAR)) -1,
|
2000-09-18 15:18:56 +00:00
|
|
|
&cbConnStrOut,
|
|
|
|
SQL_DRIVER_NOPROMPT);
|
|
|
|
if (nSQLRETURN == SQL_ERROR || nSQLRETURN == SQL_NO_DATA || SQL_SUCCESS_WITH_INFO == nSQLRETURN)
|
|
|
|
return nSQLRETURN;
|
|
|
|
#else
|
|
|
|
|
|
|
|
SQLUSMALLINT nSilent = bSilent ? SQL_DRIVER_NOPROMPT : SQL_DRIVER_COMPLETE;
|
|
|
|
nSQLRETURN = N3SQLDriverConnect(m_aConnectionHandle,
|
|
|
|
NULL,
|
|
|
|
szConnStrIn,
|
|
|
|
(SQLSMALLINT) ::std::min<sal_Int32>((sal_Int32)2048,aConStr.getLength()),
|
|
|
|
szConnStrOut,
|
|
|
|
(SQLSMALLINT) sizeof szConnStrOut,
|
|
|
|
&cbConnStrOut,
|
|
|
|
nSilent);
|
|
|
|
if (nSQLRETURN == SQL_ERROR || nSQLRETURN == SQL_NO_DATA)
|
|
|
|
return nSQLRETURN;
|
|
|
|
|
2001-10-12 11:02:56 +00:00
|
|
|
m_bClosed = sal_False;
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
#endif //LINUX
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
::rtl::OUString aVal;
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::GetInfo(this,m_aConnectionHandle,SQL_DATA_SOURCE_READ_ONLY,aVal,*this,getTextEncoding());
|
2009-09-08 09:50:48 +00:00
|
|
|
m_bReadOnly = !aVal.compareToAscii("Y");
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2001-11-23 14:04:36 +00:00
|
|
|
catch(Exception&)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2009-09-08 09:50:48 +00:00
|
|
|
m_bReadOnly = sal_True;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2001-11-23 14:04:36 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
::rtl::OUString sVersion;
|
|
|
|
OTools::GetInfo(this,m_aConnectionHandle,SQL_DRIVER_ODBC_VER,sVersion,*this,getTextEncoding());
|
|
|
|
m_bUseOldDateFormat = sVersion == ::rtl::OUString::createFromAscii("02.50") || sVersion == ::rtl::OUString::createFromAscii("02.00");
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2007-07-24 10:50:49 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
// autocoomit ist immer default
|
|
|
|
|
2009-09-08 09:50:48 +00:00
|
|
|
if (!m_bReadOnly)
|
2000-09-18 15:18:56 +00:00
|
|
|
N3SQLSetConnectAttr(m_aConnectionHandle,SQL_ATTR_AUTOCOMMIT,(SQLPOINTER)SQL_AUTOCOMMIT_ON,SQL_IS_INTEGER);
|
|
|
|
|
|
|
|
return nSQLRETURN;
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
SQLRETURN OConnection::Construct(const ::rtl::OUString& url,const Sequence< PropertyValue >& info) throw(SQLException)
|
|
|
|
{
|
|
|
|
m_aConnectionHandle = SQL_NULL_HANDLE;
|
2002-10-25 08:07:25 +00:00
|
|
|
m_sURL = url;
|
2008-01-30 06:58:03 +00:00
|
|
|
setConnectionInfo(info);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
// Connection allozieren
|
|
|
|
N3SQLAllocHandle(SQL_HANDLE_DBC,m_pDriverHandleCopy,&m_aConnectionHandle);
|
|
|
|
if(m_aConnectionHandle == SQL_NULL_HANDLE)
|
|
|
|
throw SQLException();
|
|
|
|
|
|
|
|
sal_Int32 nLen = url.indexOf(':');
|
|
|
|
nLen = url.indexOf(':',nLen+1);
|
2001-02-07 09:05:43 +00:00
|
|
|
::rtl::OUString aDSN(RTL_CONSTASCII_USTRINGPARAM("DSN=")), aUID, aPWD, aSysDrvSettings;
|
2000-10-30 13:42:22 +00:00
|
|
|
aDSN += url.copy(nLen+1);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-14 10:42:44 +00:00
|
|
|
const char* pUser = "user";
|
|
|
|
const char* pTimeout = "Timeout";
|
|
|
|
const char* pSilent = "Silent";
|
|
|
|
const char* pPwd = "password";
|
|
|
|
const char* pUseCatalog = "UseCatalog";
|
|
|
|
const char* pSysDrv = "SystemDriverSettings";
|
|
|
|
const char* pCharSet = "CharSet";
|
2001-10-29 09:23:34 +00:00
|
|
|
const char* pParaName = "ParameterNameSubstitution";
|
2003-04-11 13:41:09 +00:00
|
|
|
const char* pPrivName = "IgnoreDriverPrivileges";
|
2006-02-03 16:14:43 +00:00
|
|
|
const char* pVerColName = "PreventGetVersionColumns"; // #i60273#
|
2002-07-25 06:21:56 +00:00
|
|
|
const char* pRetrieving = "IsAutoRetrievingEnabled";
|
|
|
|
const char* pRetriStmt = "AutoRetrievingStatement";
|
2001-05-14 10:42:44 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
sal_Int32 nTimeout = 20;
|
|
|
|
sal_Bool bSilent = sal_True;
|
|
|
|
const PropertyValue *pBegin = info.getConstArray();
|
|
|
|
const PropertyValue *pEnd = pBegin + info.getLength();
|
|
|
|
for(;pBegin != pEnd;++pBegin)
|
|
|
|
{
|
2001-05-14 10:42:44 +00:00
|
|
|
if(!pBegin->Name.compareToAscii(pTimeout))
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= nTimeout );
|
2001-05-14 10:42:44 +00:00
|
|
|
else if(!pBegin->Name.compareToAscii(pSilent))
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= bSilent );
|
2003-04-11 13:41:09 +00:00
|
|
|
else if(!pBegin->Name.compareToAscii(pPrivName))
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= m_bIgnoreDriverPrivileges );
|
2006-02-03 16:14:43 +00:00
|
|
|
else if(!pBegin->Name.compareToAscii(pVerColName))
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= m_bPreventGetVersionColumns );
|
2001-10-29 09:23:34 +00:00
|
|
|
else if(!pBegin->Name.compareToAscii(pParaName))
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= m_bParameterSubstitution );
|
2002-07-25 06:21:56 +00:00
|
|
|
else if(!pBegin->Name.compareToAscii(pRetrieving))
|
|
|
|
{
|
|
|
|
sal_Bool bAutoRetrievingEnabled = sal_False;
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= bAutoRetrievingEnabled );
|
2002-07-25 06:21:56 +00:00
|
|
|
enableAutoRetrievingEnabled(bAutoRetrievingEnabled);
|
|
|
|
}
|
|
|
|
else if(!pBegin->Name.compareToAscii(pRetriStmt))
|
|
|
|
{
|
|
|
|
::rtl::OUString sGeneratedValueStatement;
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= sGeneratedValueStatement );
|
2002-07-25 06:21:56 +00:00
|
|
|
setAutoRetrievingStatement(sGeneratedValueStatement);
|
|
|
|
}
|
2001-05-14 10:42:44 +00:00
|
|
|
else if(!pBegin->Name.compareToAscii(pUser))
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= aUID );
|
2000-09-18 15:18:56 +00:00
|
|
|
aDSN = aDSN + ::rtl::OUString::createFromAscii(";UID=") + aUID;
|
|
|
|
}
|
2001-05-14 10:42:44 +00:00
|
|
|
else if(!pBegin->Name.compareToAscii(pPwd))
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= aPWD );
|
2000-09-18 15:18:56 +00:00
|
|
|
aDSN = aDSN + ::rtl::OUString::createFromAscii(";PWD=") + aPWD;
|
|
|
|
}
|
2001-05-14 10:42:44 +00:00
|
|
|
else if(!pBegin->Name.compareToAscii(pUseCatalog))
|
2001-04-20 12:31:58 +00:00
|
|
|
{
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= m_bUseCatalog );
|
2001-04-20 12:31:58 +00:00
|
|
|
}
|
2001-05-14 10:42:44 +00:00
|
|
|
else if(!pBegin->Name.compareToAscii(pSysDrv))
|
2001-02-07 09:05:43 +00:00
|
|
|
{
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= aSysDrvSettings );
|
2001-02-07 09:05:43 +00:00
|
|
|
aDSN += ::rtl::OUString::createFromAscii(";");
|
|
|
|
aDSN += aSysDrvSettings;
|
|
|
|
}
|
2001-05-14 10:42:44 +00:00
|
|
|
else if(0 == pBegin->Name.compareToAscii(pCharSet))
|
2001-02-05 11:26:42 +00:00
|
|
|
{
|
|
|
|
::rtl::OUString sIanaName;
|
2006-08-15 09:29:45 +00:00
|
|
|
OSL_VERIFY( pBegin->Value >>= sIanaName );
|
2001-02-05 11:26:42 +00:00
|
|
|
|
|
|
|
::dbtools::OCharsetMap aLookupIanaName;
|
|
|
|
::dbtools::OCharsetMap::const_iterator aLookup = aLookupIanaName.find(sIanaName, ::dbtools::OCharsetMap::IANA());
|
|
|
|
if (aLookup != aLookupIanaName.end())
|
|
|
|
m_nTextEncoding = (*aLookup).getEncoding();
|
|
|
|
else
|
|
|
|
m_nTextEncoding = RTL_TEXTENCODING_DONTKNOW;
|
|
|
|
if(m_nTextEncoding == RTL_TEXTENCODING_DONTKNOW)
|
2001-04-03 09:30:18 +00:00
|
|
|
m_nTextEncoding = osl_getThreadTextEncoding();
|
2001-02-05 11:26:42 +00:00
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2001-05-04 08:58:45 +00:00
|
|
|
m_sUser = aUID;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
SQLRETURN nSQLRETURN = OpenConnection(aDSN,nTimeout, bSilent);
|
|
|
|
if (nSQLRETURN == SQL_ERROR || nSQLRETURN == SQL_NO_DATA)
|
|
|
|
{
|
2001-11-08 08:00:46 +00:00
|
|
|
OTools::ThrowException(this,nSQLRETURN,m_aConnectionHandle,SQL_HANDLE_DBC,*this,sal_False);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
return nSQLRETURN;
|
|
|
|
}
|
|
|
|
// XServiceInfo
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_SERVICE_INFO(OConnection, "com.sun.star.sdbc.drivers.odbc.OConnection", "com.sun.star.sdbc.Connection")
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XStatement > SAL_CALL OConnection::createStatement( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-10-06 13:51:31 +00:00
|
|
|
Reference< XStatement > xReturn = new OStatement(this);
|
|
|
|
m_aStatements.push_back(WeakReferenceHelper(xReturn));
|
|
|
|
return xReturn;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XPreparedStatement > SAL_CALL OConnection::prepareStatement( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2009-09-08 09:50:48 +00:00
|
|
|
Reference< XPreparedStatement > xReturn = new OPreparedStatement(this,sql);
|
2000-10-06 13:51:31 +00:00
|
|
|
m_aStatements.push_back(WeakReferenceHelper(xReturn));
|
|
|
|
return xReturn;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
2006-06-20 00:54:35 +00:00
|
|
|
Reference< XPreparedStatement > SAL_CALL OConnection::prepareCall( const ::rtl::OUString& /*sql*/ ) throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2006-06-20 00:54:35 +00:00
|
|
|
::dbtools::throwFeatureNotImplementedException( "XConnection::prepareCall", *this );
|
2000-09-18 15:18:56 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
::rtl::OUString SAL_CALL OConnection::nativeSQL( const ::rtl::OUString& sql ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
2001-02-05 11:26:42 +00:00
|
|
|
::rtl::OString aSql(::rtl::OUStringToOString(sql.getStr(),getTextEncoding()));
|
2000-09-18 15:18:56 +00:00
|
|
|
char pOut[2048];
|
|
|
|
SQLINTEGER nOutLen;
|
2005-01-21 15:42:40 +00:00
|
|
|
OTools::ThrowException(this,N3SQLNativeSql(m_aConnectionHandle,(SDB_ODBC_CHAR*)aSql.getStr(),aSql.getLength(),(SDB_ODBC_CHAR*)pOut,sizeof pOut - 1,&nOutLen),m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
2001-02-05 11:26:42 +00:00
|
|
|
return ::rtl::OUString(pOut,nOutLen,getTextEncoding());
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setAutoCommit( sal_Bool autoCommit ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::ThrowException(this,N3SQLSetConnectAttr(m_aConnectionHandle,
|
2000-09-18 15:18:56 +00:00
|
|
|
SQL_ATTR_AUTOCOMMIT,
|
|
|
|
(SQLPOINTER)((autoCommit) ? SQL_AUTOCOMMIT_ON : SQL_AUTOCOMMIT_OFF) ,SQL_IS_INTEGER),
|
|
|
|
m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL OConnection::getAutoCommit( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
sal_uInt32 nOption = 0;
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::ThrowException(this,N3SQLGetConnectAttr(m_aConnectionHandle,
|
2000-09-18 15:18:56 +00:00
|
|
|
SQL_ATTR_AUTOCOMMIT, &nOption,0,0),m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
|
|
|
return nOption == SQL_AUTOCOMMIT_ON ;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::commit( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::ThrowException(this,N3SQLEndTran(SQL_HANDLE_DBC,m_aConnectionHandle,SQL_COMMIT),m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::rollback( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::ThrowException(this,N3SQLEndTran(SQL_HANDLE_DBC,m_aConnectionHandle,SQL_ROLLBACK),m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL OConnection::isClosed( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
return OConnection_BASE::rBHelper.bDisposed;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XDatabaseMetaData > SAL_CALL OConnection::getMetaData( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-11-03 13:21:22 +00:00
|
|
|
Reference< XDatabaseMetaData > xMetaData = m_xMetaData;
|
|
|
|
if(!xMetaData.is())
|
|
|
|
{
|
|
|
|
xMetaData = new ODatabaseMetaData(m_aConnectionHandle,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-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::ThrowException(this,
|
2006-06-20 00:54:35 +00:00
|
|
|
N3SQLSetConnectAttr(m_aConnectionHandle,SQL_ATTR_ACCESS_MODE,reinterpret_cast< SQLPOINTER >( readOnly ),SQL_IS_INTEGER),
|
2000-09-18 15:18:56 +00:00
|
|
|
m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
2009-09-08 09:50:48 +00:00
|
|
|
sal_Bool SAL_CALL OConnection::isReadOnly() throw(SQLException, RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2009-09-08 09:50:48 +00:00
|
|
|
// const member which will initialized only once
|
|
|
|
return m_bReadOnly;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setCatalog( const ::rtl::OUString& catalog ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-02-05 11:26:42 +00:00
|
|
|
::rtl::OString aCat(::rtl::OUStringToOString(catalog.getStr(),getTextEncoding()));
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::ThrowException(this,
|
2000-09-18 15:18:56 +00:00
|
|
|
N3SQLSetConnectAttr(m_aConnectionHandle,SQL_ATTR_CURRENT_CATALOG,(SDB_ODBC_CHAR*)aCat.getStr(),SQL_NTS),
|
|
|
|
m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
::rtl::OUString SAL_CALL OConnection::getCatalog( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
sal_Int32 nValueLen;
|
|
|
|
char pCat[1024];
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::ThrowException(this,
|
2005-01-21 15:42:40 +00:00
|
|
|
N3SQLGetConnectAttr(m_aConnectionHandle,SQL_ATTR_CURRENT_CATALOG,(SDB_ODBC_CHAR*)pCat,(sizeof pCat)-1,&nValueLen),
|
2000-09-18 15:18:56 +00:00
|
|
|
m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
|
|
|
|
2001-02-05 11:26:42 +00:00
|
|
|
return ::rtl::OUString(pCat,nValueLen,getTextEncoding());
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setTransactionIsolation( sal_Int32 level ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::ThrowException(this,N3SQLSetConnectAttr(m_aConnectionHandle,
|
2000-09-18 15:18:56 +00:00
|
|
|
SQL_ATTR_TXN_ISOLATION,
|
|
|
|
(SQLPOINTER)level,SQL_IS_INTEGER),
|
|
|
|
m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Int32 SAL_CALL OConnection::getTransactionIsolation( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
sal_Int32 nTxn = 0;
|
|
|
|
SQLINTEGER nValueLen;
|
2001-05-15 07:18:32 +00:00
|
|
|
OTools::ThrowException(this,
|
2000-09-18 15:18:56 +00:00
|
|
|
N3SQLGetConnectAttr(m_aConnectionHandle,SQL_ATTR_TXN_ISOLATION,&nTxn,sizeof nTxn,&nValueLen),
|
|
|
|
m_aConnectionHandle,SQL_HANDLE_DBC,*this);
|
|
|
|
return nTxn;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OConnection::getTypeMap( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
2001-05-14 10:42:44 +00:00
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
2006-06-20 00:54:35 +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:54:35 +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-14 10:42:44 +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 );
|
|
|
|
|
|
|
|
Reference< XResultSet> xRs = getMetaData ()->getTypeInfo ();
|
2001-10-08 06:20:00 +00:00
|
|
|
if(xRs.is())
|
|
|
|
{
|
|
|
|
Reference< XRow> xRow(xRs,UNO_QUERY);
|
|
|
|
// Information for a single SQL type
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2006-01-16 14:04:15 +00:00
|
|
|
::connectivity::ORowSetValue aValue;
|
|
|
|
::std::vector<sal_Int32> aTypes;
|
|
|
|
Reference<XResultSetMetaData> xResultSetMetaData = Reference<XResultSetMetaDataSupplier>(xRs,UNO_QUERY)->getMetaData();
|
2008-01-30 06:58:03 +00:00
|
|
|
sal_Int32 nCount = xResultSetMetaData->getColumnCount();
|
2001-10-08 06:20:00 +00:00
|
|
|
// Loop on the result set until we reach end of file
|
|
|
|
while (xRs->next ())
|
|
|
|
{
|
|
|
|
OTypeInfo aInfo;
|
2006-01-16 14:04:15 +00:00
|
|
|
sal_Int32 nPos = 1;
|
|
|
|
if ( aTypes.empty() )
|
|
|
|
{
|
|
|
|
if ( nCount < 1 )
|
|
|
|
nCount = 18;
|
|
|
|
aTypes.reserve(nCount+1);
|
|
|
|
aTypes.push_back(-1);
|
|
|
|
for (sal_Int32 j = 1; j <= nCount ; ++j)
|
|
|
|
aTypes.push_back(xResultSetMetaData->getColumnType(j));
|
|
|
|
}
|
|
|
|
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.aTypeName = aValue;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.nType = aValue;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.nPrecision = aValue;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.aLiteralPrefix = aValue;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.aLiteralSuffix = aValue;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.aCreateParams = aValue;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.bNullable = (sal_Int32)aValue == ColumnValue::NULLABLE;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
2006-12-01 15:50:25 +00:00
|
|
|
aInfo.bCaseSensitive = (sal_Bool)aValue;
|
2006-01-16 14:04:15 +00:00
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.nSearchType = aValue;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
2006-12-01 15:50:25 +00:00
|
|
|
aInfo.bUnsigned = (sal_Bool)aValue;
|
2006-01-16 14:04:15 +00:00
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
2006-12-01 15:50:25 +00:00
|
|
|
aInfo.bCurrency = (sal_Bool)aValue;
|
2006-01-16 14:04:15 +00:00
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
2006-12-01 15:50:25 +00:00
|
|
|
aInfo.bAutoIncrement = (sal_Bool)aValue;
|
2006-01-16 14:04:15 +00:00
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.aLocalTypeName = aValue;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.nMinimumScale = aValue;
|
|
|
|
++nPos;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.nMaximumScale = aValue;
|
2008-01-30 06:58:03 +00:00
|
|
|
if ( nCount >= 18 )
|
|
|
|
{
|
|
|
|
nPos = 18;
|
|
|
|
aValue.fill(nPos,aTypes[nPos],xRow);
|
|
|
|
aInfo.nNumPrecRadix = aValue;
|
|
|
|
}
|
2006-01-16 14:04:15 +00:00
|
|
|
|
|
|
|
// check if values are less than zero like it happens in a oracle jdbc driver
|
|
|
|
if( aInfo.nPrecision < 0)
|
|
|
|
aInfo.nPrecision = 0;
|
|
|
|
if( aInfo.nMinimumScale < 0)
|
|
|
|
aInfo.nMinimumScale = 0;
|
|
|
|
if( aInfo.nMaximumScale < 0)
|
|
|
|
aInfo.nMaximumScale = 0;
|
|
|
|
if( aInfo.nNumPrecRadix < 0)
|
|
|
|
aInfo.nNumPrecRadix = 10;
|
2001-10-08 06:20:00 +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.
|
|
|
|
|
|
|
|
m_aTypeInfo.push_back(aInfo);
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-10-08 06:20:00 +00:00
|
|
|
// Close the result set/statement.
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-10-08 06:20:00 +00:00
|
|
|
Reference< XCloseable> xClose(xRs,UNO_QUERY);
|
|
|
|
if(xClose.is())
|
|
|
|
xClose->close();
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
void OConnection::disposing()
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
|
2008-01-30 06:58:03 +00:00
|
|
|
OConnection_BASE::disposing();
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-08-29 11:13:20 +00:00
|
|
|
for (::std::map< SQLHANDLE,OConnection*>::iterator aConIter = m_aConnections.begin();aConIter != m_aConnections.end();++aConIter )
|
|
|
|
aConIter->second->dispose();
|
|
|
|
|
|
|
|
::std::map< SQLHANDLE,OConnection*>().swap(m_aConnections);
|
|
|
|
|
2001-10-12 11:02:56 +00:00
|
|
|
if(!m_bClosed)
|
|
|
|
N3SQLDisconnect(m_aConnectionHandle);
|
2000-11-03 13:21:22 +00:00
|
|
|
m_bClosed = sal_True;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
dispose_ChildImpl();
|
|
|
|
}
|
2000-11-03 13:21:22 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2001-08-29 11:13:20 +00:00
|
|
|
OConnection* OConnection::cloneConnection()
|
|
|
|
{
|
|
|
|
return new OConnection(m_pDriverHandleCopy,m_pDriver);
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
SQLHANDLE OConnection::createStatementHandle()
|
|
|
|
{
|
|
|
|
OConnection* pConnectionTemp = this;
|
|
|
|
sal_Bool bNew = sal_False;
|
2001-10-08 06:20:00 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
sal_Int32 nMaxStatements = getMetaData()->getMaxStatements();
|
|
|
|
if(nMaxStatements && nMaxStatements <= m_nStatementCount)
|
|
|
|
{
|
|
|
|
OConnection* pConnection = cloneConnection();
|
|
|
|
pConnection->acquire();
|
2008-01-30 06:58:03 +00:00
|
|
|
pConnection->Construct(m_sURL,getConnectionInfo());
|
2001-10-08 06:20:00 +00:00
|
|
|
pConnectionTemp = pConnection;
|
|
|
|
bNew = sal_True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(SQLException&)
|
2001-08-29 11:13:20 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SQLHANDLE aStatementHandle = SQL_NULL_HANDLE;
|
|
|
|
SQLRETURN nRetcode = N3SQLAllocHandle(SQL_HANDLE_STMT,pConnectionTemp->getConnection(),&aStatementHandle);
|
2006-06-20 00:54:35 +00:00
|
|
|
OSL_UNUSED( nRetcode );
|
2001-08-29 11:13:20 +00:00
|
|
|
++m_nStatementCount;
|
|
|
|
if(bNew)
|
|
|
|
m_aConnections.insert(::std::map< SQLHANDLE,OConnection*>::value_type(aStatementHandle,pConnectionTemp));
|
|
|
|
|
|
|
|
return aStatementHandle;
|
|
|
|
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OConnection::freeStatementHandle(SQLHANDLE& _pHandle)
|
|
|
|
{
|
|
|
|
::std::map< SQLHANDLE,OConnection*>::iterator aFind = m_aConnections.find(_pHandle);
|
2001-10-12 11:02:56 +00:00
|
|
|
|
|
|
|
N3SQLFreeStmt(_pHandle,SQL_RESET_PARAMS);
|
|
|
|
N3SQLFreeStmt(_pHandle,SQL_UNBIND);
|
2001-08-29 11:13:20 +00:00
|
|
|
N3SQLFreeStmt(_pHandle,SQL_CLOSE);
|
|
|
|
N3SQLFreeHandle(SQL_HANDLE_STMT,_pHandle);
|
2001-10-12 11:02:56 +00:00
|
|
|
|
2001-08-29 11:13:20 +00:00
|
|
|
_pHandle = SQL_NULL_HANDLE;
|
2001-10-12 11:02:56 +00:00
|
|
|
|
2001-08-29 11:13:20 +00:00
|
|
|
if(aFind != m_aConnections.end())
|
|
|
|
{
|
|
|
|
aFind->second->dispose();
|
|
|
|
m_aConnections.erase(aFind);
|
|
|
|
}
|
|
|
|
--m_nStatementCount;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2000-11-03 13:21:22 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
|