update dev300-m58
[ooovba.git] / connectivity / source / drivers / kab / KTable.cxx
blobb529eaea1ae1a1180f1d4069a7568f8778d4dfd2
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: KTable.cxx,v $
10 * $Revision: 1.4 $
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 "KTable.hxx"
35 #include "KTables.hxx"
36 #include "KColumns.hxx"
37 #include "KCatalog.hxx"
39 using namespace connectivity::kab;
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 KabTable::KabTable( sdbcx::OCollection* _pTables, KabConnection* _pConnection)
51 : KabTable_TYPEDEF(_pTables, sal_True),
52 m_pConnection(_pConnection)
54 construct();
56 // -------------------------------------------------------------------------
57 KabTable::KabTable( sdbcx::OCollection* _pTables,
58 KabConnection* _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 ) : KabTable_TYPEDEF(_pTables,sal_True,
65 _Name,
66 _Type,
67 _Description,
68 _SchemaName,
69 _CatalogName),
70 m_pConnection(_pConnection)
72 construct();
74 // -------------------------------------------------------------------------
75 void KabTable::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 KabColumns(this,m_aMutex,aVector);