LibreOffice Module connectivity (master) 1
AKey.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <sdbcx/VKey.hxx>
23#include <com/sun/star/sdbc/XDatabaseMetaData.hpp>
24#include <ado/Awrapadox.hxx>
25
26namespace connectivity::ado
27{
29
30 class OConnection;
31 class OAdoKey : public OKey_ADO
32 {
35 protected:
36 void fillPropertyValues();
37 virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,const css::uno::Any& rValue) override;
38 public:
39 virtual void refreshColumns() override;
40 public:
41 OAdoKey(bool _bCase,OConnection* _pConnection,ADOKey* _pKey);
42 OAdoKey(bool _bCase,OConnection* _pConnection);
43
44 WpADOKey getImpl() const { return m_aKey;}
45 // map the update/delete rules
46 static RuleEnum Map2Rule(sal_Int32 _eNum);
47 static sal_Int32 MapRule(const RuleEnum& _eNum);
48
49 // map the keytypes
50 static sal_Int32 MapKeyRule(const KeyTypeEnum& _eNum);
51 static KeyTypeEnum Map2KeyRule(sal_Int32 _eNum);
52 };
53}
54
55/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static RuleEnum Map2Rule(sal_Int32 _eNum)
WpADOKey getImpl() const
Definition: AKey.hxx:44
virtual void refreshColumns() override
Definition: AKey.cxx:52
static KeyTypeEnum Map2KeyRule(sal_Int32 _eNum)
OConnection * m_pConnection
Definition: AKey.hxx:34
virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const css::uno::Any &rValue) override
Definition: AKey.cxx:69
static sal_Int32 MapRule(const RuleEnum &_eNum)
OAdoKey(bool _bCase, OConnection *_pConnection, ADOKey *_pKey)
Definition: AKey.cxx:35
static sal_Int32 MapKeyRule(const KeyTypeEnum &_eNum)
sdbcx::OKey OKey_ADO
Definition: AKey.hxx:28