1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: KTable.cxx,v $
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"
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
)
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
,
70 m_pConnection(_pConnection
)
74 // -------------------------------------------------------------------------
75 void KabTable::refreshColumns()
77 TStringVector aVector
;
81 Reference
< XResultSet
> xResult
= m_pConnection
->getMetaData()->getColumns(
85 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("%")));
89 Reference
< XRow
> xRow(xResult
, UNO_QUERY
);
90 while (xResult
->next())
91 aVector
.push_back(xRow
->getString(4));
96 m_pColumns
->reFill(aVector
);
98 m_pColumns
= new KabColumns(this,m_aMutex
,aVector
);