1*2e2212a7SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*2e2212a7SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*2e2212a7SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*2e2212a7SAndrew Rist  * distributed with this work for additional information
6*2e2212a7SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*2e2212a7SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*2e2212a7SAndrew Rist  * "License"); you may not use this file except in compliance
9*2e2212a7SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*2e2212a7SAndrew Rist  *
11*2e2212a7SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*2e2212a7SAndrew Rist  *
13*2e2212a7SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*2e2212a7SAndrew Rist  * software distributed under the License is distributed on an
15*2e2212a7SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*2e2212a7SAndrew Rist  * KIND, either express or implied.  See the License for the
17*2e2212a7SAndrew Rist  * specific language governing permissions and limitations
18*2e2212a7SAndrew Rist  * under the License.
19*2e2212a7SAndrew Rist  *
20*2e2212a7SAndrew Rist  *************************************************************/
21*2e2212a7SAndrew Rist 
22*2e2212a7SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _DBACORE_RESULTCOLUMN_HXX_
25cdf0e10cSrcweir #define _DBACORE_RESULTCOLUMN_HXX_
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #ifndef _COM_SUN_STAR_SDBC_XRESULTSETMETADATA_HDL_
28cdf0e10cSrcweir #include <com/sun/star/sdbc/XResultSetMetaData.hdl>
29cdf0e10cSrcweir #endif
30cdf0e10cSrcweir #ifndef _DBA_COREAPI_COLUMN_HXX_
31cdf0e10cSrcweir #include <column.hxx>
32cdf0e10cSrcweir #endif
33cdf0e10cSrcweir #include <boost/optional.hpp>
34cdf0e10cSrcweir namespace dbaccess
35cdf0e10cSrcweir {
36cdf0e10cSrcweir 	//************************************************************
37cdf0e10cSrcweir 	//  OResultColumn
38cdf0e10cSrcweir 	//************************************************************
39cdf0e10cSrcweir 	class OResultColumn : public OColumn,
40cdf0e10cSrcweir 						  public ::comphelper::OPropertyArrayUsageHelper < OResultColumn >
41cdf0e10cSrcweir 	{
42cdf0e10cSrcweir 	protected:
43cdf0e10cSrcweir 		::com::sun::star::uno::Reference < ::com::sun::star::sdbc::XResultSetMetaData >	m_xMetaData;
44cdf0e10cSrcweir         ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >   m_xDBMetaData;
45cdf0e10cSrcweir 		sal_Int32				    m_nPos;
46cdf0e10cSrcweir         ::com::sun::star::uno::Any  m_aIsRowVersion;
47cdf0e10cSrcweir         mutable ::boost::optional< sal_Bool > m_isSigned;
48cdf0e10cSrcweir         mutable ::boost::optional< sal_Bool > m_isCurrency;
49cdf0e10cSrcweir         mutable ::boost::optional< sal_Bool > m_bSearchable;
50cdf0e10cSrcweir         mutable ::boost::optional< sal_Bool > m_isCaseSensitive;
51cdf0e10cSrcweir         mutable ::boost::optional< sal_Bool > m_isReadOnly;
52cdf0e10cSrcweir         mutable ::boost::optional< sal_Bool > m_isWritable;
53cdf0e10cSrcweir         mutable ::boost::optional< sal_Bool > m_isDefinitelyWritable;
54cdf0e10cSrcweir         mutable ::boost::optional< sal_Bool > m_isAutoIncrement;
55cdf0e10cSrcweir         mutable ::boost::optional< sal_Int32 > m_isNullable;
56cdf0e10cSrcweir         mutable ::boost::optional< ::rtl::OUString > m_sColumnLabel;
57cdf0e10cSrcweir         mutable ::boost::optional< sal_Int32 > m_nColumnDisplaySize;
58cdf0e10cSrcweir         mutable ::boost::optional< sal_Int32 > m_nColumnType;
59cdf0e10cSrcweir         mutable ::boost::optional< sal_Int32 > m_nPrecision;
60cdf0e10cSrcweir         mutable ::boost::optional< sal_Int32 > m_nScale;
61cdf0e10cSrcweir 
62cdf0e10cSrcweir 		virtual ~OResultColumn();
63cdf0e10cSrcweir 	public:
64cdf0e10cSrcweir 		OResultColumn(
65cdf0e10cSrcweir             const ::com::sun::star::uno::Reference < ::com::sun::star::sdbc::XResultSetMetaData >& _xMetaData,
66cdf0e10cSrcweir 			sal_Int32 _nPos,
67cdf0e10cSrcweir             const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData >& _rxDBMeta );
68cdf0e10cSrcweir 
69cdf0e10cSrcweir 	// com::sun::star::lang::XTypeProvider
70cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException);
71cdf0e10cSrcweir 
72cdf0e10cSrcweir 	// com::sun::star::lang::XServiceInfo
73cdf0e10cSrcweir 		virtual ::rtl::OUString SAL_CALL getImplementationName(  ) throw(::com::sun::star::uno::RuntimeException);
74cdf0e10cSrcweir 		virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames(  ) throw(::com::sun::star::uno::RuntimeException);
75cdf0e10cSrcweir 
76cdf0e10cSrcweir 	// cppu::OComponentHelper
77cdf0e10cSrcweir 		virtual void SAL_CALL disposing(void);
78cdf0e10cSrcweir 
79cdf0e10cSrcweir 	// comphelper::OPropertyArrayUsageHelper
80cdf0e10cSrcweir 		virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const;
81cdf0e10cSrcweir 
82cdf0e10cSrcweir 	// cppu::OPropertySetHelper
83cdf0e10cSrcweir 		virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
84cdf0e10cSrcweir 		virtual void SAL_CALL getFastPropertyValue(
85cdf0e10cSrcweir 									::com::sun::star::uno::Any& rValue,
86cdf0e10cSrcweir 									sal_Int32 nHandle
87cdf0e10cSrcweir 										 ) const;
88cdf0e10cSrcweir 
89cdf0e10cSrcweir     private:
90cdf0e10cSrcweir         void    impl_determineIsRowVersion_nothrow();
91cdf0e10cSrcweir 
92cdf0e10cSrcweir     protected:
93cdf0e10cSrcweir         using ::cppu::OPropertySetHelper::getFastPropertyValue;
94cdf0e10cSrcweir 	};
95cdf0e10cSrcweir }
96cdf0e10cSrcweir #endif // _DBACORE_RESULTCOLUMN_HXX_
97cdf0e10cSrcweir 
98