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 
26 namespace connectivity::ado
27 {
28         typedef sdbcx::OKey OKey_ADO;
29 
30         class OConnection;
31         class OAdoKey : public OKey_ADO
32         {
33             WpADOKey        m_aKey;
34             OConnection*    m_pConnection;
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             // css::lang::XUnoTunnel
45             virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
46             static css::uno::Sequence< sal_Int8 > getUnoTunnelId();
47 
getImpl() const48             WpADOKey        getImpl() const { return m_aKey;}
49             // map the update/delete rules
50             static RuleEnum Map2Rule(sal_Int32 _eNum);
51             static sal_Int32 MapRule(const RuleEnum& _eNum);
52 
53             // map the keytypes
54             static sal_Int32 MapKeyRule(const KeyTypeEnum& _eNum);
55             static KeyTypeEnum Map2KeyRule(sal_Int32 _eNum);
56         };
57 }
58 
59 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
60