1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <ado/AKey.hxx>
21 #include <com/sun/star/sdbc/XRow.hpp>
22 #include <com/sun/star/sdbc/XResultSet.hpp>
23 #include <comphelper/servicehelper.hxx>
24 #include <ado/AColumns.hxx>
25 #include <ado/AConnection.hxx>
27 using namespace connectivity::ado
;
28 using namespace com::sun::star::uno
;
29 using namespace com::sun::star::lang
;
30 using namespace com::sun::star::beans
;
31 using namespace com::sun::star::sdbc
;
32 using namespace com::sun::star::sdbcx
;
35 OAdoKey::OAdoKey(bool _bCase
,OConnection
* _pConnection
, ADOKey
* _pKey
)
37 ,m_pConnection(_pConnection
)
44 OAdoKey::OAdoKey(bool _bCase
,OConnection
* _pConnection
)
46 ,m_pConnection(_pConnection
)
52 void OAdoKey::refreshColumns()
54 ::std::vector
< OUString
> aVector
;
56 WpADOColumns aColumns
;
57 if ( m_aKey
.IsValid() )
59 aColumns
= m_aKey
.get_Columns();
60 aColumns
.fillElementNames(aVector
);
64 m_pColumns
->reFill(aVector
);
66 m_pColumns
.reset(new OColumns(*this, m_aMutex
, aVector
, aColumns
, isCaseSensitive(), m_pConnection
));
69 void OAdoKey::setFastPropertyValue_NoBroadcast(sal_Int32 nHandle
,const Any
& rValue
)
75 case PROPERTY_ID_NAME
:
79 m_aKey
.put_Name(aVal
);
80 ADOS::ThrowException(m_pConnection
->getConnection(),*this);
83 case PROPERTY_ID_TYPE
:
87 m_aKey
.put_Type(Map2KeyRule(nVal
));
88 ADOS::ThrowException(m_pConnection
->getConnection(),*this);
91 case PROPERTY_ID_REFERENCEDTABLE
:
95 m_aKey
.put_RelatedTable(aVal
);
96 ADOS::ThrowException(m_pConnection
->getConnection(),*this);
99 case PROPERTY_ID_UPDATERULE
:
103 m_aKey
.put_UpdateRule(Map2Rule(nVal
));
104 ADOS::ThrowException(m_pConnection
->getConnection(),*this);
107 case PROPERTY_ID_DELETERULE
:
111 m_aKey
.put_DeleteRule(Map2Rule(nVal
));
112 ADOS::ThrowException(m_pConnection
->getConnection(),*this);
117 OKey_ADO::setFastPropertyValue_NoBroadcast(nHandle
,rValue
);
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */