Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*************************************************************************
3 : *
4 : * Effective License of whole file:
5 : *
6 : * This library is free software; you can redistribute it and/or
7 : * modify it under the terms of the GNU Lesser General Public
8 : * License version 2.1, as published by the Free Software Foundation.
9 : *
10 : * This library is distributed in the hope that it will be useful,
11 : * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 : * Lesser General Public License for more details.
14 : *
15 : * You should have received a copy of the GNU Lesser General Public
16 : * License along with this library; if not, write to the Free Software
17 : * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 : * MA 02111-1307 USA
19 : *
20 : * Parts "Copyright by Sun Microsystems, Inc" prior to August 2011:
21 : *
22 : * The Contents of this file are made available subject to the terms of
23 : * the GNU Lesser General Public License Version 2.1
24 : *
25 : * Copyright: 2000 by Sun Microsystems, Inc.
26 : *
27 : * Contributor(s): Joerg Budischewski
28 : *
29 : * All parts contributed on or after August 2011:
30 : *
31 : * Version: MPL 1.1 / GPLv3+ / LGPLv2.1+
32 : *
33 : * The contents of this file are subject to the Mozilla Public License Version
34 : * 1.1 (the "License"); you may not use this file except in compliance with
35 : * the License or as specified alternatively below. You may obtain a copy of
36 : * the License at http://www.mozilla.org/MPL/
37 : *
38 : * Software distributed under the License is distributed on an "AS IS" basis,
39 : * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
40 : * for the specific language governing rights and limitations under the
41 : * License.
42 : *
43 : * Major Contributor(s):
44 : * [ Copyright (C) 2011 Lionel Elie Mamane <lionel@mamane.lu> ]
45 : *
46 : * All Rights Reserved.
47 : *
48 : * For minor contributions see the git repository.
49 : *
50 : * Alternatively, the contents of this file may be used under the terms of
51 : * either the GNU General Public License Version 3 or later (the "GPLv3+"), or
52 : * the GNU Lesser General Public License Version 2.1 or later (the "LGPLv2.1+"),
53 : * in which case the provisions of the GPLv3+ or the LGPLv2.1+ are applicable
54 : * instead of those above.
55 : *
56 : ************************************************************************/
57 :
58 : #include <cppuhelper/typeprovider.hxx>
59 :
60 : #include "pq_xcolumn.hxx"
61 :
62 : using com::sun::star::uno::Any;
63 : using com::sun::star::uno::Reference;
64 : using com::sun::star::uno::RuntimeException;
65 : using com::sun::star::uno::Type;
66 : using com::sun::star::uno::Sequence;
67 :
68 : using com::sun::star::beans::XPropertySet;
69 :
70 : namespace pq_sdbc_driver
71 : {
72 0 : Column::Column( const ::rtl::Reference< RefCountedMutex > & refMutex,
73 : const Reference< com::sun::star::sdbc::XConnection > & connection,
74 : ConnectionSettings *pSettings)
75 : : ReflectionBase(
76 0 : getStatics().refl.column.implName,
77 0 : getStatics().refl.column.serviceNames,
78 : refMutex,
79 : connection,
80 : pSettings,
81 0 : * getStatics().refl.column.pProps )
82 0 : {}
83 :
84 0 : Reference< XPropertySet > Column::createDataDescriptor( ) throw (RuntimeException)
85 : {
86 : ColumnDescriptor * pColumn = new ColumnDescriptor(
87 0 : m_refMutex, m_conn, m_pSettings );
88 0 : pColumn->copyValuesFrom( this );
89 0 : return Reference< XPropertySet > ( pColumn );
90 : }
91 :
92 0 : ColumnDescriptor::ColumnDescriptor(
93 : const ::rtl::Reference< RefCountedMutex > & refMutex,
94 : const Reference< com::sun::star::sdbc::XConnection > & connection,
95 : ConnectionSettings *pSettings)
96 : : ReflectionBase(
97 0 : getStatics().refl.columnDescriptor.implName,
98 0 : getStatics().refl.columnDescriptor.serviceNames,
99 : refMutex,
100 : connection,
101 : pSettings,
102 0 : *getStatics().refl.columnDescriptor.pProps )
103 0 : {}
104 :
105 0 : Reference< XPropertySet > ColumnDescriptor::createDataDescriptor( ) throw (RuntimeException)
106 : {
107 : ColumnDescriptor * pColumn = new ColumnDescriptor(
108 0 : m_refMutex, m_conn, m_pSettings );
109 0 : pColumn->copyValuesFrom( this );
110 :
111 0 : return Reference< XPropertySet > ( pColumn );
112 : }
113 :
114 :
115 :
116 :
117 :
118 : }
|