update dev300-m58
[ooovba.git] / connectivity / source / drivers / macab / MacabTable.cxx
blob0b40917851e5face4da8ca417603afc3d3922d65
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: MacabTable.cxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_connectivity.hxx"
34 #include "MacabTable.hxx"
35 #include "MacabTables.hxx"
36 #include "MacabColumns.hxx"
37 #include "MacabCatalog.hxx"
39 using namespace connectivity::macab;
40 using namespace connectivity;
41 using namespace ::comphelper;
42 using namespace ::com::sun::star::uno;
43 using namespace ::com::sun::star::beans;
44 using namespace ::com::sun::star::sdbcx;
45 using namespace ::com::sun::star::sdbc;
46 using namespace ::com::sun::star::container;
47 using namespace ::com::sun::star::lang;
49 // -------------------------------------------------------------------------
50 MacabTable::MacabTable( sdbcx::OCollection* _pTables, MacabConnection* _pConnection)
51 : MacabTable_TYPEDEF(_pTables, sal_True),
52 m_pConnection(_pConnection)
54 construct();
56 // -------------------------------------------------------------------------
57 MacabTable::MacabTable( sdbcx::OCollection* _pTables,
58 MacabConnection* _pConnection,
59 const ::rtl::OUString& _Name,
60 const ::rtl::OUString& _Type,
61 const ::rtl::OUString& _Description ,
62 const ::rtl::OUString& _SchemaName,
63 const ::rtl::OUString& _CatalogName
64 ) : MacabTable_TYPEDEF(_pTables,sal_True,
65 _Name,
66 _Type,
67 _Description,
68 _SchemaName,
69 _CatalogName),
70 m_pConnection(_pConnection)
72 construct();
74 // -------------------------------------------------------------------------
75 void MacabTable::refreshColumns()
77 TStringVector aVector;
79 if (!isNew())
81 Reference< XResultSet > xResult = m_pConnection->getMetaData()->getColumns(
82 Any(),
83 m_SchemaName,
84 m_Name,
85 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("%")));
87 if (xResult.is())
89 Reference< XRow > xRow(xResult, UNO_QUERY);
90 while (xResult->next())
91 aVector.push_back(xRow->getString(4));
95 if (m_pColumns)
96 m_pColumns->reFill(aVector);
97 else
98 m_pColumns = new MacabColumns(this,m_aMutex,aVector);