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: ADatabaseMetaDataResultSetMetaData.hxx,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 #ifndef _CONNECTIVITY_ADO_ADATABASEMETADATARESULTSETMETADATA_HXX_
32 #define _CONNECTIVITY_ADO_ADATABASEMETADATARESULTSETMETADATA_HXX_
34 #include <com/sun/star/sdbc/XResultSetMetaData.hpp>
35 #include <cppuhelper/implbase1.hxx>
39 #include "ado/Awrapado.hxx"
40 #include "ado/ADatabaseMetaDataResultSet.hxx"
41 #include "OColumn.hxx"
43 namespace connectivity
47 //**************************************************************
48 //************ Class: ResultSetMetaData
49 //**************************************************************
50 typedef ::cppu::WeakImplHelper1
< ::com::sun::star::sdbc::XResultSetMetaData
> ODatabaseMetaResultSetMetaData_BASE
;
52 class ODatabaseMetaDataResultSetMetaData
: public ODatabaseMetaResultSetMetaData_BASE
54 friend class ODatabaseMetaDataResultSet
;
56 const ::std::vector
<sal_Int32
> &m_vMapping
; // when not every column is needed
57 ::std::map
<sal_Int32
,connectivity::OColumn
> m_mColumns
;
58 ::std::map
<sal_Int32
,connectivity::OColumn
>::const_iterator m_mColumnsIter
;
60 ADORecordset
* m_pRecordSet
;
61 sal_Int32 m_nColCount
;
64 ODatabaseMetaDataResultSetMetaData( const ODatabaseMetaDataResultSetMetaData
& ); // never implemented
65 ODatabaseMetaDataResultSetMetaData
& operator=( const ODatabaseMetaDataResultSetMetaData
& ); // never implemented
68 void setColumnPrivilegesMap();
71 void setProcedureColumnsMap();
72 void setPrimaryKeysMap();
73 void setIndexInfoMap();
74 void setTablePrivilegesMap();
75 void setCrossReferenceMap();
76 void setTypeInfoMap();
77 void setProceduresMap();
79 // ein Konstruktor, der fuer das Returnen des Objektes benoetigt wird:
80 ODatabaseMetaDataResultSetMetaData( ADORecordset
* _pRecordSet
,ODatabaseMetaDataResultSet
* _pRes
)
81 : m_pRecordSet(_pRecordSet
),m_vMapping(_pRes
->getColumnMapping()),
82 m_nColCount(m_vMapping
.size()-1)
85 m_pRecordSet
->AddRef();
87 ~ODatabaseMetaDataResultSetMetaData();
89 /// Avoid ambigous cast error from the compiler.
90 inline operator ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XResultSetMetaData
> () throw()
93 virtual sal_Int32 SAL_CALL
getColumnCount( ) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
94 virtual sal_Bool SAL_CALL
isAutoIncrement( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
95 virtual sal_Bool SAL_CALL
isCaseSensitive( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
96 virtual sal_Bool SAL_CALL
isSearchable( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
97 virtual sal_Bool SAL_CALL
isCurrency( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
98 virtual sal_Int32 SAL_CALL
isNullable( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
99 virtual sal_Bool SAL_CALL
isSigned( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
100 virtual sal_Int32 SAL_CALL
getColumnDisplaySize( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
101 virtual ::rtl::OUString SAL_CALL
getColumnLabel( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
102 virtual ::rtl::OUString SAL_CALL
getColumnName( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
103 virtual ::rtl::OUString SAL_CALL
getSchemaName( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
104 virtual sal_Int32 SAL_CALL
getPrecision( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
105 virtual sal_Int32 SAL_CALL
getScale( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
106 virtual ::rtl::OUString SAL_CALL
getTableName( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
107 virtual ::rtl::OUString SAL_CALL
getCatalogName( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
108 virtual sal_Int32 SAL_CALL
getColumnType( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
109 virtual ::rtl::OUString SAL_CALL
getColumnTypeName( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
110 virtual sal_Bool SAL_CALL
isReadOnly( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
111 virtual sal_Bool SAL_CALL
isWritable( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
112 virtual sal_Bool SAL_CALL
isDefinitelyWritable( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
113 virtual ::rtl::OUString SAL_CALL
getColumnServiceName( sal_Int32 column
) throw(::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
117 #endif // _CONNECTIVITY_ADO_ADATABASEMETARESULTSETMETADATA_HXX_