2010-10-27 13:11:31 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-12 22:04:38 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2004-08-02 16:14:40 +00:00
|
|
|
#ifndef CONNECTIVITY_MYSQL_COLUMN_HXX
|
|
|
|
#define CONNECTIVITY_MYSQL_COLUMN_HXX
|
|
|
|
#include "connectivity/TColumnsHelper.hxx"
|
|
|
|
#include "connectivity/sdbcx/VColumn.hxx"
|
|
|
|
|
|
|
|
namespace connectivity
|
|
|
|
{
|
|
|
|
namespace mysql
|
|
|
|
{
|
|
|
|
class OMySQLColumns : public OColumnsHelper
|
|
|
|
{
|
|
|
|
protected:
|
2014-03-26 16:37:00 +01:00
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > createDescriptor() SAL_OVERRIDE;
|
2004-08-02 16:14:40 +00:00
|
|
|
public:
|
|
|
|
OMySQLColumns( ::cppu::OWeakObject& _rParent
|
2014-04-16 09:14:24 +02:00
|
|
|
,bool _bCase
|
2004-08-02 16:14:40 +00:00
|
|
|
,::osl::Mutex& _rMutex
|
|
|
|
,const TStringVector &_rVector
|
2014-04-16 09:14:24 +02:00
|
|
|
,bool _bUseHardRef = true
|
2004-08-02 16:14:40 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
class OMySQLColumn;
|
|
|
|
typedef sdbcx::OColumn OMySQLColumn_BASE;
|
|
|
|
typedef ::comphelper::OIdPropertyArrayUsageHelper<OMySQLColumn> OMySQLColumn_PROP;
|
|
|
|
|
|
|
|
class OMySQLColumn : public OMySQLColumn_BASE,
|
|
|
|
public OMySQLColumn_PROP
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString m_sAutoIncrement;
|
2004-08-02 16:14:40 +00:00
|
|
|
protected:
|
2014-03-26 16:37:00 +01:00
|
|
|
virtual ::cppu::IPropertyArrayHelper* createArrayHelper( sal_Int32 _nId) const SAL_OVERRIDE;
|
|
|
|
virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE;
|
2004-08-02 16:14:40 +00:00
|
|
|
|
|
|
|
public:
|
2014-04-16 09:14:24 +02:00
|
|
|
OMySQLColumn(bool _bCase);
|
2014-03-26 16:37:00 +01:00
|
|
|
virtual void construct() SAL_OVERRIDE;
|
2004-08-02 16:14:40 +00:00
|
|
|
|
2014-03-26 16:37:00 +01:00
|
|
|
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
2004-08-02 16:14:40 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // CONNECTIVITY_MYSQL_COLUMN_HXX
|
|
|
|
|
2010-10-27 13:11:31 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|