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 #pragma once
21 
22 #include <com/sun/star/sdbc/XResultSetMetaData.hpp>
23 #include <cppuhelper/implbase.hxx>
24 #include <vector>
25 #include <ado/Awrapado.hxx>
26 #include <ado/AResultSet.hxx>
27 #include <OColumn.hxx>
28 
29 namespace connectivity::ado
30 {
31 
32 
33         //************ Class: ResultSetMetaData
34 
35         typedef ::cppu::WeakImplHelper<css::sdbc::XResultSetMetaData>   OResultSetMetaData_BASE;
36 
37         class OResultSetMetaData :  public  OResultSetMetaData_BASE
38         {
39             friend class OResultSet;
40 
41             ADORecordset*   m_pRecordSet;
42             sal_Int32       m_nColCount;
43 
44             sal_Int32 MapADOType2Jdbc(DataTypeEnum eType);
45         private:
46             OResultSetMetaData( const OResultSetMetaData& );            // never implemented
47             OResultSetMetaData& operator=( const OResultSetMetaData& ); // never implemented
48 
49         protected:
50             virtual ~OResultSetMetaData() override;
51         public:
52             // a Constructor, that is needed for when Returning the Object is needed:
53             OResultSetMetaData( ADORecordset* _pRecordSet);
54 
55             virtual sal_Int32 SAL_CALL getColumnCount(  ) override;
56             virtual sal_Bool SAL_CALL isAutoIncrement( sal_Int32 column ) override;
57             virtual sal_Bool SAL_CALL isCaseSensitive( sal_Int32 column ) override;
58             virtual sal_Bool SAL_CALL isSearchable( sal_Int32 column ) override;
59             virtual sal_Bool SAL_CALL isCurrency( sal_Int32 column ) override;
60             virtual sal_Int32 SAL_CALL isNullable( sal_Int32 column ) override;
61             virtual sal_Bool SAL_CALL isSigned( sal_Int32 column ) override;
62             virtual sal_Int32 SAL_CALL getColumnDisplaySize( sal_Int32 column ) override;
63             virtual OUString SAL_CALL getColumnLabel( sal_Int32 column ) override;
64             virtual OUString SAL_CALL getColumnName( sal_Int32 column ) override;
65             virtual OUString SAL_CALL getSchemaName( sal_Int32 column ) override;
66             virtual sal_Int32 SAL_CALL getPrecision( sal_Int32 column ) override;
67             virtual sal_Int32 SAL_CALL getScale( sal_Int32 column ) override;
68             virtual OUString SAL_CALL getTableName( sal_Int32 column ) override;
69             virtual OUString SAL_CALL getCatalogName( sal_Int32 column ) override;
70             virtual sal_Int32 SAL_CALL getColumnType( sal_Int32 column ) override;
71             virtual OUString SAL_CALL getColumnTypeName( sal_Int32 column ) override;
72             virtual sal_Bool SAL_CALL isReadOnly( sal_Int32 column ) override;
73             virtual sal_Bool SAL_CALL isWritable( sal_Int32 column ) override;
74             virtual sal_Bool SAL_CALL isDefinitelyWritable( sal_Int32 column ) override;
75             virtual OUString SAL_CALL getColumnServiceName( sal_Int32 column ) override;
76         };
77 }
78 
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
80