122 lines
6.1 KiB
C++
122 lines
6.1 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* 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 .
|
|
*/
|
|
|
|
#ifndef INCLUDED_CONNECTIVITY_SOURCE_INC_HSQLDB_HTABLE_HXX
|
|
#define INCLUDED_CONNECTIVITY_SOURCE_INC_HSQLDB_HTABLE_HXX
|
|
|
|
#include <connectivity/TTableHelper.hxx>
|
|
#include <com/sun/star/sdbc/XDatabaseMetaData.hpp>
|
|
#include <comphelper/IdPropArrayHelper.hxx>
|
|
|
|
namespace connectivity
|
|
{
|
|
namespace hsqldb
|
|
{
|
|
|
|
OUString getTypeString(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xColProp);
|
|
|
|
class OHSQLTable;
|
|
typedef ::comphelper::OIdPropertyArrayUsageHelper< OHSQLTable > OHSQLTable_PROP;
|
|
class OHSQLTable : public OTableHelper
|
|
,public OHSQLTable_PROP
|
|
{
|
|
sal_Int32 m_nPrivileges; // we have to set our privileges by our own
|
|
|
|
/** executes the statmenmt.
|
|
@param _rStatement
|
|
The statement to execute.
|
|
*/
|
|
void executeStatement(const OUString& _rStatement );
|
|
protected:
|
|
|
|
/** creates the column collection for the table
|
|
@param _rNames
|
|
The column names.
|
|
*/
|
|
virtual sdbcx::OCollection* createColumns(const TStringVector& _rNames) SAL_OVERRIDE;
|
|
|
|
/** creates the key collection for the table
|
|
@param _rNames
|
|
The key names.
|
|
*/
|
|
virtual sdbcx::OCollection* createKeys(const TStringVector& _rNames) SAL_OVERRIDE;
|
|
|
|
/** creates the index collection for the table
|
|
@param _rNames
|
|
The index names.
|
|
*/
|
|
virtual sdbcx::OCollection* createIndexes(const TStringVector& _rNames) SAL_OVERRIDE;
|
|
|
|
/** used to implement the creation of the array helper which is shared amongst all instances of the class.
|
|
This method needs to be implemented in derived classes.
|
|
<BR>
|
|
The method gets called with s_aMutex acquired.
|
|
<BR>
|
|
as long as IPropertyArrayHelper has no virtual destructor, the implementation of ~OPropertyArrayUsageHelper
|
|
assumes that you created an ::cppu::OPropertyArrayHelper when deleting s_pProps.
|
|
@return an pointer to the newly created array helper. Must not be NULL.
|
|
*/
|
|
virtual ::cppu::IPropertyArrayHelper* createArrayHelper(sal_Int32 nId) const SAL_OVERRIDE;
|
|
virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE;
|
|
|
|
public:
|
|
OHSQLTable( sdbcx::OCollection* _pTables,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _xConnection);
|
|
OHSQLTable( sdbcx::OCollection* _pTables,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection >& _xConnection,
|
|
const OUString& _Name,
|
|
const OUString& _Type,
|
|
const OUString& _Description = OUString(),
|
|
const OUString& _SchemaName = OUString(),
|
|
const OUString& _CatalogName = OUString(),
|
|
sal_Int32 _nPrivileges = 0
|
|
);
|
|
|
|
// ODescriptor
|
|
virtual void construct() SAL_OVERRIDE;
|
|
// com::sun::star::lang::XUnoTunnel
|
|
virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
|
static ::com::sun::star::uno::Sequence< sal_Int8 > getUnoTunnelImplementationId();
|
|
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
|
//XTypeProvider
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
|
// XAlterTable
|
|
virtual void SAL_CALL alterColumnByName( const OUString& colName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& descriptor ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
|
|
|
// XRename
|
|
virtual void SAL_CALL rename( const OUString& newName ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
|
|
|
/**
|
|
returns the ALTER TABLE XXX COLUMN statement
|
|
*/
|
|
OUString getAlterTableColumnPart();
|
|
|
|
// some methods to alter table structures
|
|
void alterColumnType(sal_Int32 nNewType,const OUString& _rColName,const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _xDescriptor);
|
|
void alterDefaultValue(const OUString& _sNewDefault,const OUString& _rColName);
|
|
void dropDefaultValue(const OUString& _sNewDefault);
|
|
|
|
};
|
|
}
|
|
}
|
|
#endif // INCLUDED_CONNECTIVITY_SOURCE_INC_HSQLDB_HTABLE_HXX
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|