2013-05-10 18:21:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* The Contents of this file are made available subject to the terms of
|
|
|
|
* the BSD license.
|
|
|
|
*
|
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of Sun Microsystems, Inc. nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
|
|
|
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
|
|
|
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "FConnection.hxx"
|
|
|
|
|
|
|
|
#include "FDatabaseMetaData.hxx"
|
|
|
|
#include "FDriver.hxx"
|
|
|
|
#include "FStatement.hxx"
|
|
|
|
#include "FPreparedStatement.hxx"
|
|
|
|
#include <com/sun/star/sdbc/ColumnValue.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
|
|
#include <com/sun/star/sdbc/TransactionIsolation.hpp>
|
|
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
|
|
|
|
|
|
|
using namespace connectivity::firebird;
|
2013-05-27 12:27:23 +00:00
|
|
|
using namespace connectivity;
|
2013-05-10 18:21:30 +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(FirebirdDriver* _pDriver)
|
|
|
|
: OSubComponent<OConnection, OConnection_BASE>((::cppu::OWeakObject*)_pDriver, this),
|
|
|
|
OMetaConnection_BASE(m_aMutex),
|
|
|
|
m_pDriver(_pDriver),
|
|
|
|
m_bClosed(sal_False),
|
|
|
|
m_xMetaData(NULL),
|
|
|
|
m_bUseCatalog(sal_False),
|
|
|
|
m_bUseOldDateFormat(sal_False)
|
|
|
|
{
|
|
|
|
m_pDriver->acquire();
|
2013-05-27 12:27:23 +00:00
|
|
|
m_DBHandler = NULL;
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
OConnection::~OConnection()
|
|
|
|
{
|
|
|
|
if(!isClosed())
|
|
|
|
close();
|
|
|
|
m_pDriver->release();
|
|
|
|
m_pDriver = NULL;
|
|
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::release() throw()
|
|
|
|
{
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::release().");
|
2013-05-27 21:06:48 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
relase_ChildImpl();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
//-----------------------------------------------------------------------------
|
2013-05-27 12:27:23 +00:00
|
|
|
|
|
|
|
/* Print the status, the SQLCODE, and exit.
|
|
|
|
* Also, indicate which operation the error occured on.
|
|
|
|
*/
|
|
|
|
static int pr_error (long* status, char* operation)
|
|
|
|
{
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_WARN("connectivity.firebird", "=> OConnection static pr_error().");
|
2013-05-27 12:27:23 +00:00
|
|
|
|
|
|
|
isc_print_status(status);
|
|
|
|
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_WARN("connectivity.firebird", "=> OConnection static pr_error(). "
|
|
|
|
"PROBLEM ON " << operation << ". "
|
|
|
|
"SQLCODE: " << isc_sqlcode(status) << ".");
|
2013-05-27 12:27:23 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
void OConnection::construct(const ::rtl::OUString& url,const Sequence< PropertyValue >& info) throw(SQLException)
|
|
|
|
{
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::construct()." );
|
2013-05-27 12:27:23 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
osl_atomic_increment( &m_refCount );
|
|
|
|
|
|
|
|
// some example code how to get the information out of the sequence
|
|
|
|
|
2013-05-27 12:27:23 +00:00
|
|
|
ISC_STATUS_ARRAY status; /* status vector */
|
|
|
|
|
2013-06-04 13:11:00 +03:00
|
|
|
if (isc_attach_database(status, 0, "/var/tmp/libo-fb/new.fdb", &m_DBHandler, 0, NULL))
|
2013-05-27 12:27:23 +00:00
|
|
|
if (pr_error(status, "attach database"))
|
|
|
|
return;
|
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
osl_atomic_decrement( &m_refCount );
|
|
|
|
}
|
|
|
|
// XServiceInfo
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
IMPLEMENT_SERVICE_INFO(OConnection, "com.sun.star.sdbc.drivers.firebird.OConnection", "com.sun.star.sdbc.Connection")
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XStatement > SAL_CALL OConnection::createStatement( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::createStatement().");
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
2013-06-05 15:06:05 +00:00
|
|
|
// the pre
|
|
|
|
if(m_aTypeInfo.empty())
|
|
|
|
buildTypeInfo();
|
|
|
|
|
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::createStatement(). "
|
|
|
|
"Creating statement.");
|
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
// create a statement
|
|
|
|
// the statement can only be executed once
|
|
|
|
Reference< XStatement > xReturn = new OStatement(this);
|
|
|
|
m_aStatements.push_back(WeakReferenceHelper(xReturn));
|
|
|
|
return xReturn;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XPreparedStatement > SAL_CALL OConnection::prepareStatement( const ::rtl::OUString& _sSql ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::prepareStatement(). "
|
|
|
|
"Got called with sql: " << _sSql);
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
// the pre
|
|
|
|
if(m_aTypeInfo.empty())
|
|
|
|
buildTypeInfo();
|
|
|
|
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::prepareStatement(). "
|
|
|
|
"Creating prepared statement.");
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
// create a statement
|
|
|
|
// the statement can only be executed more than once
|
|
|
|
Reference< XPreparedStatement > xReturn = new OPreparedStatement(this,m_aTypeInfo,_sSql);
|
|
|
|
m_aStatements.push_back(WeakReferenceHelper(xReturn));
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::prepareStatement(). "
|
|
|
|
"Prepared Statement created.");
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
return xReturn;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XPreparedStatement > SAL_CALL OConnection::prepareCall( const ::rtl::OUString& _sSql ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
// not implemented yet :-) a task to do
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
::rtl::OUString SAL_CALL OConnection::nativeSQL( const ::rtl::OUString& _sSql ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
// when you need to transform SQL92 to you driver specific you can do it here
|
|
|
|
|
|
|
|
return _sSql;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setAutoCommit( sal_Bool autoCommit ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
// here you have to set your commit mode please have a look at the jdbc documentation to get a clear explanation
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL OConnection::getAutoCommit( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
// you have to distinguish which if you are in autocommit mode or not
|
|
|
|
// at normal case true should be fine here
|
|
|
|
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::commit( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
// when you database does support transactions you should commit here
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::rollback( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
|
|
|
|
// same as commit but for the other case
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL OConnection::isClosed( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
// just simple -> we are close when we are disposed taht means someone called dispose(); (XComponent)
|
|
|
|
return OConnection_BASE::rBHelper.bDisposed;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< XDatabaseMetaData > SAL_CALL OConnection::getMetaData( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::getMetaData().");
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
// here we have to create the class with biggest interface
|
|
|
|
// The answer is 42 :-)
|
|
|
|
Reference< XDatabaseMetaData > xMetaData = m_xMetaData;
|
|
|
|
if(!xMetaData.is())
|
|
|
|
{
|
|
|
|
xMetaData = new ODatabaseMetaData(this); // need the connection because it can return it
|
|
|
|
m_xMetaData = xMetaData;
|
|
|
|
}
|
|
|
|
|
|
|
|
return xMetaData;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setReadOnly( sal_Bool readOnly ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
// set you connection to readonly
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL OConnection::isReadOnly( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
// return if your connection to readonly
|
|
|
|
return sal_False;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setCatalog( const ::rtl::OUString& catalog ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
// if your database doesn't work with catalogs you go to next method otherwise you kjnow what to do
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
::rtl::OUString SAL_CALL OConnection::getCatalog( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
|
|
|
|
// return your current catalog
|
|
|
|
return ::rtl::OUString();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setTransactionIsolation( sal_Int32 level ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
// set your isolation level
|
|
|
|
// please have a look at @see com.sun.star.sdbc.TransactionIsolation
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
sal_Int32 SAL_CALL OConnection::getTransactionIsolation( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
|
|
|
|
// please have a look at @see com.sun.star.sdbc.TransactionIsolation
|
|
|
|
return TransactionIsolation::NONE;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
Reference< ::com::sun::star::container::XNameAccess > SAL_CALL OConnection::getTypeMap( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
// if your driver has special database types you can return it here
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::setTypeMap( const Reference< ::com::sun::star::container::XNameAccess >& typeMap ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
// the other way around
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
// XCloseable
|
|
|
|
void SAL_CALL OConnection::close( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::close().");
|
2013-05-27 21:06:48 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
// we just dispose us
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
checkDisposed(OConnection_BASE::rBHelper.bDisposed);
|
|
|
|
|
|
|
|
}
|
|
|
|
dispose();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
// XWarningsSupplier
|
|
|
|
Any SAL_CALL OConnection::getWarnings( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
// when you collected some warnings -> return it
|
|
|
|
return Any();
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OConnection::clearWarnings( ) throw(SQLException, RuntimeException)
|
|
|
|
{
|
|
|
|
// you should clear your collected warnings here
|
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void OConnection::buildTypeInfo() throw( SQLException)
|
|
|
|
{
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::buildTypeInfo().");
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
Reference< XResultSet> xRs = getMetaData ()->getTypeInfo ();
|
|
|
|
Reference< XRow> xRow(xRs,UNO_QUERY);
|
|
|
|
// Information for a single SQL type
|
|
|
|
|
|
|
|
// Loop on the result set until we reach end of file
|
|
|
|
|
|
|
|
while (xRs->next ())
|
|
|
|
{
|
|
|
|
OTypeInfo aInfo;
|
|
|
|
aInfo.aTypeName = xRow->getString (1);
|
|
|
|
aInfo.nType = xRow->getShort (2);
|
|
|
|
aInfo.nPrecision = xRow->getInt (3);
|
|
|
|
aInfo.aLiteralPrefix = xRow->getString (4);
|
|
|
|
aInfo.aLiteralSuffix = xRow->getString (5);
|
|
|
|
aInfo.aCreateParams = xRow->getString (6);
|
|
|
|
aInfo.bNullable = xRow->getBoolean (7) == ColumnValue::NULLABLE;
|
|
|
|
aInfo.bCaseSensitive = xRow->getBoolean (8);
|
|
|
|
aInfo.nSearchType = xRow->getShort (9);
|
|
|
|
aInfo.bUnsigned = xRow->getBoolean (10);
|
|
|
|
aInfo.bCurrency = xRow->getBoolean (11);
|
|
|
|
aInfo.bAutoIncrement = xRow->getBoolean (12);
|
|
|
|
aInfo.aLocalTypeName = xRow->getString (13);
|
|
|
|
aInfo.nMinimumScale = xRow->getShort (14);
|
|
|
|
aInfo.nMaximumScale = xRow->getShort (15);
|
|
|
|
aInfo.nNumPrecRadix = (sal_Int16)xRow->getInt(18);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::buildTypeInfo(). "
|
|
|
|
"Type info built.");
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
// Close the result set/statement.
|
|
|
|
|
|
|
|
Reference< XCloseable> xClose(xRs,UNO_QUERY);
|
|
|
|
xClose->close();
|
2013-05-22 08:56:23 +00:00
|
|
|
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::buildTypeInfo(). "
|
|
|
|
"Closed.");
|
2013-05-10 18:21:30 +00:00
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
void OConnection::disposing()
|
|
|
|
{
|
2013-06-04 13:51:40 +03:00
|
|
|
SAL_INFO("connectivity.firebird", "=> OConnection::disposing().");
|
2013-05-27 21:06:48 +00:00
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
// we noticed that we should be destroied in near future so we have to dispose our statements
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
|
|
|
|
|
|
|
for (OWeakRefArray::iterator i = m_aStatements.begin(); m_aStatements.end() != i; ++i)
|
|
|
|
{
|
|
|
|
Reference< XComponent > xComp(i->get(), UNO_QUERY);
|
|
|
|
if (xComp.is())
|
|
|
|
xComp->dispose();
|
|
|
|
}
|
|
|
|
m_aStatements.clear();
|
|
|
|
|
|
|
|
m_bClosed = sal_True;
|
|
|
|
m_xMetaData = ::com::sun::star::uno::WeakReference< ::com::sun::star::sdbc::XDatabaseMetaData>();
|
|
|
|
|
2013-05-27 15:00:29 +00:00
|
|
|
ISC_STATUS_ARRAY status; /* status vector */
|
|
|
|
if (isc_detach_database(status, &m_DBHandler))
|
|
|
|
if (pr_error(status, "dattach database"))
|
|
|
|
return;
|
|
|
|
|
2013-05-10 18:21:30 +00:00
|
|
|
dispose_ChildImpl();
|
|
|
|
OConnection_BASE::disposing();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|