Fixes #fdo30794 Based on bin/add-modelines script (originally posted in mail 1286706307.1871.1399280959@webmail.messagingengine.com) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
187 lines
7.8 KiB
C++
187 lines
7.8 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*************************************************************************
|
|
*
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* This file is part of OpenOffice.org.
|
|
*
|
|
* 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.
|
|
*
|
|
* 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).
|
|
*
|
|
* 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.
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_connectivity.hxx"
|
|
#include "adabas/BColumns.hxx"
|
|
#include "connectivity/sdbcx/VColumn.hxx"
|
|
#include "connectivity/sdbcx/VColumn.hxx"
|
|
#include <com/sun/star/sdbc/XRow.hpp>
|
|
#include <com/sun/star/sdbc/XResultSet.hpp>
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
|
#include <com/sun/star/sdbc/ColumnValue.hpp>
|
|
#include "adabas/BTable.hxx"
|
|
#include "adabas/BTables.hxx"
|
|
#include "adabas/BCatalog.hxx"
|
|
#include <comphelper/types.hxx>
|
|
#include "connectivity/dbtools.hxx"
|
|
#include <comphelper/property.hxx>
|
|
|
|
using namespace ::comphelper;
|
|
|
|
|
|
using namespace connectivity::adabas;
|
|
using namespace connectivity::sdbcx;
|
|
using namespace connectivity;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::beans;
|
|
// using namespace ::com::sun::star::sdbcx;
|
|
using namespace ::com::sun::star::sdbc;
|
|
using namespace ::com::sun::star::container;
|
|
using namespace ::com::sun::star::lang;
|
|
typedef connectivity::sdbcx::OCollection OCollection_TYPE;
|
|
|
|
sdbcx::ObjectType OColumns::createObject(const ::rtl::OUString& _rName)
|
|
{
|
|
Reference< XResultSet > xResult = m_pTable->getMetaData()->getColumns(Any(),
|
|
m_pTable->getSchema(),m_pTable->getTableName(),_rName);
|
|
|
|
sdbcx::ObjectType xRet = NULL;
|
|
if(xResult.is())
|
|
{
|
|
Reference< XRow > xRow(xResult,UNO_QUERY);
|
|
while(xResult->next())
|
|
{
|
|
if(xRow->getString(4) == _rName)
|
|
{
|
|
sal_Int32 nType = xRow->getInt(5);
|
|
::rtl::OUString sTypeName = xRow->getString(6);
|
|
sal_Int32 nPrec = xRow->getInt(7);
|
|
OAdabasCatalog::correctColumnProperties(nPrec,nType,sTypeName);
|
|
sal_Bool bAutoIncrement = sal_False;
|
|
if ( !_rName.equalsAscii("DEFAULT") && !m_pTable->getSchema().equalsAscii("DOMAIN") && !m_pTable->getTableName().equalsAscii("COLUMNS") )
|
|
{
|
|
Reference< XStatement > xStmt = m_pTable->getMetaData()->getConnection()->createStatement( );
|
|
::rtl::OUString sQuery(RTL_CONSTASCII_USTRINGPARAM("SELECT \"DEFAULT\" FROM DOMAIN.COLUMNS WHERE OWNER = '"));
|
|
sQuery += m_pTable->getSchema();
|
|
sQuery += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("' AND TABLENAME = '"));
|
|
sQuery += m_pTable->getTableName() + ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("' AND COLUMNNAME = '"));
|
|
sQuery += _rName + ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("'"));
|
|
try
|
|
{
|
|
Reference< XResultSet > xResult2 = xStmt->executeQuery(sQuery);
|
|
Reference< XRow > xRow2(xResult2,UNO_QUERY);
|
|
if ( xRow2.is() && xResult2->next() )
|
|
bAutoIncrement = xRow2->getString(1) == ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("DEFAULT STAMP"));
|
|
}
|
|
catch(const Exception&)
|
|
{
|
|
}
|
|
}
|
|
|
|
xRet = new OColumn(_rName,
|
|
sTypeName,
|
|
xRow->getString(13),
|
|
xRow->getString(12),
|
|
xRow->getInt(11),
|
|
nPrec,
|
|
xRow->getInt(9),
|
|
nType,
|
|
bAutoIncrement,sal_False,sal_False,sal_True);
|
|
break;
|
|
}
|
|
}
|
|
::comphelper::disposeComponent(xResult);
|
|
}
|
|
|
|
return xRet;
|
|
}
|
|
|
|
// -------------------------------------------------------------------------
|
|
void OColumns::impl_refresh() throw(RuntimeException)
|
|
{
|
|
m_pTable->refreshColumns();
|
|
}
|
|
// -------------------------------------------------------------------------
|
|
Reference< XPropertySet > OColumns::createDescriptor()
|
|
{
|
|
return new OColumn(sal_True);
|
|
}
|
|
// -------------------------------------------------------------------------
|
|
// XAppend
|
|
sdbcx::ObjectType OColumns::appendObject( const ::rtl::OUString& _rForName, const Reference< XPropertySet >& descriptor )
|
|
{
|
|
::osl::MutexGuard aGuard(m_rMutex);
|
|
if ( m_pTable->isNew() )
|
|
return cloneDescriptor( descriptor );
|
|
|
|
::rtl::OUString aSql(RTL_CONSTASCII_USTRINGPARAM("ALTER TABLE "));
|
|
::rtl::OUString sQuote = m_pTable->getMetaData()->getIdentifierQuoteString( );
|
|
const ::rtl::OUString& sDot = OAdabasCatalog::getDot();
|
|
|
|
m_pTable->beginTransAction();
|
|
try
|
|
{
|
|
aSql += ::dbtools::quoteName(sQuote,m_pTable->getSchema()) + sDot + ::dbtools::quoteName(sQuote,m_pTable->getTableName());
|
|
aSql += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" ADD ("));
|
|
aSql += ::dbtools::quoteName(sQuote,_rForName);
|
|
aSql += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" "));
|
|
aSql += OTables::getColumnSqlType(descriptor);
|
|
aSql += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" )"));
|
|
|
|
Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement();
|
|
xStmt->execute(aSql);
|
|
::comphelper::disposeComponent(xStmt);
|
|
|
|
m_pTable->alterNotNullValue(getINT32(descriptor->getPropertyValue(OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_ISNULLABLE))),_rForName);
|
|
}
|
|
catch(const Exception&)
|
|
{
|
|
m_pTable->rollbackTransAction();
|
|
throw;
|
|
}
|
|
m_pTable->endTransAction();
|
|
|
|
return createObject( _rForName );
|
|
}
|
|
// -------------------------------------------------------------------------
|
|
// XDrop
|
|
void OColumns::dropObject(sal_Int32 /*_nPos*/,const ::rtl::OUString _sElementName)
|
|
{
|
|
OSL_ENSURE(m_pTable,"OColumns::dropByName: Table is null!");
|
|
if(!m_pTable->isNew())
|
|
{
|
|
::rtl::OUString aSql(RTL_CONSTASCII_USTRINGPARAM("ALTER TABLE "));
|
|
::rtl::OUString sQuote = m_pTable->getMetaData()->getIdentifierQuoteString( );
|
|
const ::rtl::OUString& sDot = OAdabasCatalog::getDot();
|
|
|
|
aSql += ::dbtools::quoteName(sQuote,m_pTable->getSchema()) + sDot + ::dbtools::quoteName(sQuote,m_pTable->getTableName());
|
|
aSql += ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(" DROP "));
|
|
aSql += ::dbtools::quoteName(sQuote,_sElementName);
|
|
|
|
Reference< XStatement > xStmt = m_pTable->getConnection()->createStatement( );
|
|
xStmt->execute(aSql);
|
|
::comphelper::disposeComponent(xStmt);
|
|
}
|
|
}
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|