Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / connectivity / source / drivers / evoab2 / NTables.cxx
blob69b54ba7075961d2fbdeb5df6a7b8f4965c5b612
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 "NTables.hxx"
21 #include <com/sun/star/sdbc/XRow.hpp>
22 #include <com/sun/star/sdbc/XResultSet.hpp>
23 #include "NCatalog.hxx"
24 #include <comphelper/types.hxx>
25 #include "NTable.hxx"
26 using namespace ::comphelper;
28 using namespace ::cppu;
29 using namespace connectivity::evoab;
30 using namespace connectivity::sdbcx;
31 using namespace ::com::sun::star::uno;
32 using namespace ::com::sun::star::beans;
33 using namespace ::com::sun::star::sdbcx;
34 using namespace ::com::sun::star::sdbc;
35 using namespace ::com::sun::star::container;
36 using namespace ::com::sun::star::lang;
37 using namespace dbtools;
39 ObjectType OEvoabTables::createObject(const OUString& aName)
41 Sequence< OUString > aTypes { "TABLE" };
43 Reference< XResultSet > xResult = m_xMetaData->getTables(Any(),"%",aName,aTypes);
45 ObjectType xRet;
46 if(xResult.is())
48 Reference< XRow > xRow(xResult,UNO_QUERY);
49 if(xResult->next()) // there can be only one table with this name
51 xRet = new OEvoabTable(
52 this,
53 static_cast<OEvoabCatalog&>(m_rParent).getConnection(),
54 aName,
55 xRow->getString(4),
56 xRow->getString(5),
57 "",
58 "");
62 ::comphelper::disposeComponent(xResult);
64 return xRet;
67 void OEvoabTables::impl_refresh( )
69 static_cast<OEvoabCatalog&>(m_rParent).refreshTables();
72 void OEvoabTables::disposing()
74 m_xMetaData.clear();
75 OCollection::disposing();
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */