Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*
3 : : * This file is part of the LibreOffice project.
4 : : *
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/.
8 : : *
9 : : * This file incorporates work covered by the following license notice:
10 : : *
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 .
18 : : */
19 : :
20 : :
21 : : #include "datasourcemetadata.hxx"
22 : :
23 : : #include <com/sun/star/lang/NullPointerException.hpp>
24 : :
25 : : #include <connectivity/dbmetadata.hxx>
26 : :
27 : : //........................................................................
28 : : namespace sdbtools
29 : : {
30 : : //........................................................................
31 : :
32 : : /** === begin UNO using === **/
33 : : using ::com::sun::star::uno::Reference;
34 : : using ::com::sun::star::sdbc::XConnection;
35 : : using ::com::sun::star::lang::NullPointerException;
36 : : using ::com::sun::star::uno::RuntimeException;
37 : : /** === end UNO using === **/
38 : :
39 : : //====================================================================
40 : : //= DataSourceMetaData_Impl
41 : : //====================================================================
42 : : struct DataSourceMetaData_Impl
43 : : {
44 : : };
45 : :
46 : : //====================================================================
47 : : //= DataSourceMetaData
48 : : //====================================================================
49 : : //--------------------------------------------------------------------
50 : 0 : DataSourceMetaData::DataSourceMetaData( const ::comphelper::ComponentContext& _rContext, const Reference< XConnection >& _rxConnection )
51 : : :ConnectionDependentComponent( _rContext )
52 : 0 : ,m_pImpl( new DataSourceMetaData_Impl )
53 : : {
54 : 0 : if ( !_rxConnection.is() )
55 : 0 : throw NullPointerException();
56 : 0 : setWeakConnection( _rxConnection );
57 : 0 : }
58 : :
59 : : //--------------------------------------------------------------------
60 : 0 : DataSourceMetaData::~DataSourceMetaData()
61 : : {
62 : 0 : }
63 : :
64 : : //--------------------------------------------------------------------
65 : 0 : ::sal_Bool SAL_CALL DataSourceMetaData::supportsQueriesInFrom( ) throw (RuntimeException)
66 : : {
67 : 0 : EntryGuard aGuard( *this );
68 : 0 : ::dbtools::DatabaseMetaData aMeta( getConnection() );
69 : 0 : return aMeta.supportsSubqueriesInFrom();
70 : : }
71 : :
72 : : //........................................................................
73 : : } // namespace sdbtools
74 : : //........................................................................
75 : :
76 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|