2000-09-18 15:18:56 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 07:24:50 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:24:50 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:24:50 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:24:50 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:24:50 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 07:24:50 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 01:15:45 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_connectivity.hxx"
|
2000-09-18 15:18:56 +00:00
|
|
|
#include "ado/ATable.hxx"
|
|
|
|
#include "ado/AIndexes.hxx"
|
|
|
|
#include "ado/AColumns.hxx"
|
|
|
|
#include "ado/AColumn.hxx"
|
|
|
|
#include "ado/AKeys.hxx"
|
2001-09-25 12:12:51 +00:00
|
|
|
#include "ado/AConnection.hxx"
|
2000-09-18 15:18:56 +00:00
|
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
|
|
#include <com/sun/star/sdbc/XResultSet.hpp>
|
|
|
|
#include <com/sun/star/sdbcx/KeyType.hpp>
|
|
|
|
#include <com/sun/star/sdbc/KeyRule.hpp>
|
|
|
|
#include <cppuhelper/typeprovider.hxx>
|
|
|
|
#include <com/sun/star/lang/DisposedException.hpp>
|
|
|
|
#include <com/sun/star/sdbc/ColumnValue.hpp>
|
|
|
|
#include "ado/Awrapado.hxx"
|
2000-10-09 10:26:03 +00:00
|
|
|
#include <comphelper/sequence.hxx>
|
2001-05-14 10:42:44 +00:00
|
|
|
#include "TConnection.hxx"
|
2001-05-18 07:51:34 +00:00
|
|
|
#include <comphelper/types.hxx>
|
|
|
|
|
|
|
|
using namespace ::comphelper;
|
2001-05-14 10:42:44 +00:00
|
|
|
|
|
|
|
using namespace connectivity;
|
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::container;
|
|
|
|
using namespace com::sun::star::lang;
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------
|
2001-09-25 12:12:51 +00:00
|
|
|
OAdoTable::OAdoTable(sdbcx::OCollection* _pTables,sal_Bool _bCase,OCatalog* _pCatalog,_ADOTable* _pTable)
|
|
|
|
: OTable_TYPEDEF(_pTables,_bCase,::rtl::OUString(),::rtl::OUString())
|
2001-04-12 11:33:30 +00:00
|
|
|
,m_pCatalog(_pCatalog)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
construct();
|
2001-04-12 11:33:30 +00:00
|
|
|
m_aTable = WpADOTable(_pTable);
|
2002-11-29 11:24:20 +00:00
|
|
|
// m_aTable.putref_ParentCatalog(_pCatalog->getCatalog());
|
2001-04-12 11:33:30 +00:00
|
|
|
fillPropertyValues();
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
}
|
2001-04-12 11:33:30 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
2001-09-25 12:12:51 +00:00
|
|
|
OAdoTable::OAdoTable(sdbcx::OCollection* _pTables,sal_Bool _bCase,OCatalog* _pCatalog)
|
|
|
|
: OTable_TYPEDEF(_pTables,_bCase)
|
2001-04-12 11:33:30 +00:00
|
|
|
,m_pCatalog(_pCatalog)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2000-11-03 13:21:22 +00:00
|
|
|
construct();
|
|
|
|
m_aTable.Create();
|
2002-07-11 05:57:45 +00:00
|
|
|
m_aTable.putref_ParentCatalog(_pCatalog->getCatalog());
|
2000-11-03 13:21:22 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2004-08-02 15:58:09 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OAdoTable::disposing(void)
|
|
|
|
{
|
|
|
|
OTable_TYPEDEF::disposing();
|
|
|
|
m_aTable.clear();
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
// -------------------------------------------------------------------------
|
2000-11-03 13:21:22 +00:00
|
|
|
void OAdoTable::refreshColumns()
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2001-05-02 11:57:37 +00:00
|
|
|
TStringVector aVector;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2002-01-18 15:35:28 +00:00
|
|
|
WpADOColumns aColumns;
|
|
|
|
if ( m_aTable.IsValid() )
|
|
|
|
{
|
|
|
|
aColumns = m_aTable.get_Columns();
|
|
|
|
aColumns.fillElementNames(aVector);
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-06-20 06:16:56 +00:00
|
|
|
if(m_pColumns)
|
|
|
|
m_pColumns->reFill(aVector);
|
|
|
|
else
|
2001-11-09 06:05:38 +00:00
|
|
|
m_pColumns = new OColumns(*this,m_aMutex,aVector,aColumns,isCaseSensitive(),m_pCatalog->getConnection());
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
2000-11-03 13:21:22 +00:00
|
|
|
void OAdoTable::refreshKeys()
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2001-05-02 11:57:37 +00:00
|
|
|
TStringVector aVector;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2002-01-18 15:35:28 +00:00
|
|
|
WpADOKeys aKeys;
|
|
|
|
if(m_aTable.IsValid())
|
|
|
|
{
|
|
|
|
aKeys = m_aTable.get_Keys();
|
|
|
|
aKeys.fillElementNames(aVector);
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-06-20 06:16:56 +00:00
|
|
|
if(m_pKeys)
|
|
|
|
m_pKeys->reFill(aVector);
|
|
|
|
else
|
2001-11-09 06:05:38 +00:00
|
|
|
m_pKeys = new OKeys(*this,m_aMutex,aVector,aKeys,isCaseSensitive(),m_pCatalog->getConnection());
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
void OAdoTable::refreshIndexes()
|
|
|
|
{
|
2001-05-02 11:57:37 +00:00
|
|
|
TStringVector aVector;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2002-01-18 15:35:28 +00:00
|
|
|
WpADOIndexes aIndexes;
|
|
|
|
if(m_aTable.IsValid())
|
|
|
|
{
|
|
|
|
aIndexes = m_aTable.get_Indexes();
|
|
|
|
aIndexes.fillElementNames(aVector);
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-06-20 06:16:56 +00:00
|
|
|
if(m_pIndexes)
|
|
|
|
m_pIndexes->reFill(aVector);
|
|
|
|
else
|
2001-11-09 06:05:38 +00:00
|
|
|
m_pIndexes = new OIndexes(*this,m_aMutex,aVector,aIndexes,isCaseSensitive(),m_pCatalog->getConnection());
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
2000-11-03 13:21:22 +00:00
|
|
|
Sequence< sal_Int8 > OAdoTable::getUnoTunnelImplementationId()
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
static ::cppu::OImplementationId * pId = 0;
|
|
|
|
if (! pId)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
|
|
|
|
if (! pId)
|
|
|
|
{
|
|
|
|
static ::cppu::OImplementationId aId;
|
|
|
|
pId = &aId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pId->getImplementationId();
|
|
|
|
}
|
|
|
|
|
|
|
|
// com::sun::star::lang::XUnoTunnel
|
|
|
|
//------------------------------------------------------------------
|
2000-11-03 13:21:22 +00:00
|
|
|
sal_Int64 OAdoTable::getSomething( const Sequence< sal_Int8 > & rId ) throw (RuntimeException)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2001-08-24 05:19:41 +00:00
|
|
|
return (rId.getLength() == 16 && 0 == rtl_compareMemory(getUnoTunnelImplementationId().getConstArray(), rId.getConstArray(), 16 ) )
|
2006-06-20 00:15:26 +00:00
|
|
|
? reinterpret_cast< sal_Int64 >( this )
|
|
|
|
: OTable_TYPEDEF::getSomething(rId);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// XRename
|
|
|
|
void SAL_CALL OAdoTable::rename( const ::rtl::OUString& newName ) throw(SQLException, ElementExistException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
2007-03-26 12:58:13 +00:00
|
|
|
checkDisposed(OTableDescriptor_BASE_TYPEDEF::rBHelper.bDisposed);
|
2001-05-17 06:30:42 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
m_aTable.put_Name(newName);
|
2001-09-25 12:12:51 +00:00
|
|
|
ADOS::ThrowException(*(m_pCatalog->getConnection()->getConnection()),*this);
|
|
|
|
|
|
|
|
OTable_TYPEDEF::rename(newName);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2004-08-02 15:58:09 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
Reference< XDatabaseMetaData> OAdoTable::getMetaData() const
|
|
|
|
{
|
|
|
|
return m_pCatalog->getConnection()->getMetaData();
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
// XAlterTable
|
|
|
|
void SAL_CALL OAdoTable::alterColumnByName( const ::rtl::OUString& colName, const Reference< XPropertySet >& descriptor ) throw(SQLException, NoSuchElementException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
2007-03-26 12:58:13 +00:00
|
|
|
checkDisposed(OTableDescriptor_BASE_TYPEDEF::rBHelper.bDisposed);
|
2001-05-17 06:30:42 +00:00
|
|
|
|
2001-11-09 06:05:38 +00:00
|
|
|
sal_Bool bError = sal_True;
|
|
|
|
OAdoColumn* pColumn = NULL;
|
2006-07-10 13:24:06 +00:00
|
|
|
if(::comphelper::getImplementation(pColumn,descriptor) && pColumn != NULL)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2001-11-09 06:05:38 +00:00
|
|
|
WpADOColumns aColumns = m_aTable.get_Columns();
|
|
|
|
bError = !aColumns.Delete(colName);
|
|
|
|
bError = bError || !aColumns.Append(pColumn->getColumnImpl());
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2001-11-09 06:05:38 +00:00
|
|
|
if(bError)
|
|
|
|
ADOS::ThrowException(*(m_pCatalog->getConnection()->getConnection()),*this);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-05-04 08:58:45 +00:00
|
|
|
m_pColumns->refresh();
|
2001-11-09 06:05:38 +00:00
|
|
|
refreshColumns();
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
void SAL_CALL OAdoTable::alterColumnByIndex( sal_Int32 index, const Reference< XPropertySet >& descriptor ) throw(SQLException, ::com::sun::star::lang::IndexOutOfBoundsException, RuntimeException)
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard(m_aMutex);
|
2007-03-26 12:58:13 +00:00
|
|
|
checkDisposed(OTableDescriptor_BASE_TYPEDEF::rBHelper.bDisposed);
|
2001-05-17 06:30:42 +00:00
|
|
|
|
2001-11-09 06:05:38 +00:00
|
|
|
Reference< XPropertySet > xOld;
|
|
|
|
m_pColumns->getByIndex(index) >>= xOld;
|
|
|
|
if(xOld.is())
|
|
|
|
alterColumnByName(getString(xOld->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME))),descriptor);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
2000-11-03 13:21:22 +00:00
|
|
|
void OAdoTable::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,const Any& rValue)throw (Exception)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
if(m_aTable.IsValid())
|
|
|
|
{
|
|
|
|
switch(nHandle)
|
|
|
|
{
|
|
|
|
case PROPERTY_ID_NAME:
|
|
|
|
m_aTable.put_Name(getString(rValue));
|
|
|
|
break;
|
2002-01-18 15:35:28 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
case PROPERTY_ID_TYPE:
|
2002-01-18 15:35:28 +00:00
|
|
|
OTools::putValue( m_aTable.get_Properties(),
|
|
|
|
OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_TYPE),
|
|
|
|
getString(rValue));
|
2000-09-18 15:18:56 +00:00
|
|
|
break;
|
2002-01-18 15:35:28 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
case PROPERTY_ID_DESCRIPTION:
|
2002-01-18 15:35:28 +00:00
|
|
|
OTools::putValue( m_aTable.get_Properties(),
|
|
|
|
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Description")),
|
|
|
|
getString(rValue));
|
2000-09-18 15:18:56 +00:00
|
|
|
break;
|
2002-01-18 15:35:28 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
case PROPERTY_ID_SCHEMANAME:
|
|
|
|
break;
|
2002-01-18 15:35:28 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
default:
|
|
|
|
throw Exception();
|
|
|
|
}
|
|
|
|
}
|
2001-04-12 11:33:30 +00:00
|
|
|
OTable_TYPEDEF::setFastPropertyValue_NoBroadcast(nHandle,rValue);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
2007-03-26 12:58:13 +00:00
|
|
|
void SAL_CALL OAdoTable::acquire() throw()
|
2001-04-30 09:16:19 +00:00
|
|
|
{
|
|
|
|
OTable_TYPEDEF::acquire();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2007-03-26 12:58:13 +00:00
|
|
|
void SAL_CALL OAdoTable::release() throw()
|
2001-04-30 09:16:19 +00:00
|
|
|
{
|
|
|
|
OTable_TYPEDEF::release();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2007-03-26 12:58:13 +00:00
|
|
|
::rtl::OUString SAL_CALL OAdoTable::getName() throw(::com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
return m_aTable.get_Name();
|
|
|
|
}
|
2000-11-03 13:21:22 +00:00
|
|
|
|