update emoji autocorrect entries from po-files
[LibreOffice.git] / connectivity / source / drivers / firebird / ResultSetMetaData.hxx
blobd8ad5697d0aa99f4efab72a97bcbb3a51beddead
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_FIREBIRD_RESULTSETMETADATA_HXX
21 #define INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_FIREBIRD_RESULTSETMETADATA_HXX
23 #include "Connection.hxx"
25 #include <ibase.h>
27 #include <cppuhelper/implbase1.hxx>
29 #include <com/sun/star/sdbc/XResultSetMetaData.hpp>
31 namespace connectivity
33 namespace firebird
35 typedef ::cppu::WeakImplHelper1< ::com::sun::star::sdbc::XResultSetMetaData>
36 OResultSetMetaData_BASE;
38 class OResultSetMetaData : public OResultSetMetaData_BASE
40 protected:
41 ::rtl::Reference<Connection> m_pConnection;
42 XSQLDA* m_pSqlda;
44 virtual ~OResultSetMetaData();
46 void verifyValidColumn(sal_Int32 column) throw(::com::sun::star::sdbc::SQLException);
47 public:
48 // a constructor, which is required for returning objects:
49 OResultSetMetaData(Connection* pConnection,
50 XSQLDA* pSqlda)
51 : m_pConnection(pConnection)
52 , m_pSqlda(pSqlda)
55 /// Avoid ambigous cast error from the compiler.
56 inline operator ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData > () throw()
57 { return this; }
59 virtual sal_Int32 SAL_CALL getColumnCount()
60 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
61 virtual sal_Bool SAL_CALL isAutoIncrement(sal_Int32 column)
62 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
63 virtual sal_Bool SAL_CALL isCaseSensitive(sal_Int32 column)
64 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
65 virtual sal_Bool SAL_CALL isSearchable(sal_Int32 column)
66 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
67 virtual sal_Bool SAL_CALL isCurrency(sal_Int32 column)
68 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
69 virtual sal_Int32 SAL_CALL isNullable(sal_Int32 column)
70 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
71 virtual sal_Bool SAL_CALL isSigned(sal_Int32 column)
72 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
73 virtual sal_Int32 SAL_CALL getColumnDisplaySize(sal_Int32 column)
74 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
75 virtual ::rtl::OUString SAL_CALL getColumnLabel(sal_Int32 column)
76 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
77 virtual ::rtl::OUString SAL_CALL getColumnName(sal_Int32 column)
78 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
79 virtual ::rtl::OUString SAL_CALL getSchemaName(sal_Int32 column)
80 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
81 virtual sal_Int32 SAL_CALL getPrecision(sal_Int32 column)
82 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
83 virtual sal_Int32 SAL_CALL getScale(sal_Int32 column)
84 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
85 virtual ::rtl::OUString SAL_CALL getTableName(sal_Int32 column)
86 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
87 virtual ::rtl::OUString SAL_CALL getCatalogName(sal_Int32 column)
88 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
89 virtual sal_Int32 SAL_CALL getColumnType(sal_Int32 column)
90 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
91 virtual ::rtl::OUString SAL_CALL getColumnTypeName(sal_Int32 column)
92 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
93 virtual sal_Bool SAL_CALL isReadOnly(sal_Int32 column)
94 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
95 virtual sal_Bool SAL_CALL isWritable(sal_Int32 column)
96 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
97 virtual sal_Bool SAL_CALL isDefinitelyWritable(sal_Int32 column)
98 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
99 virtual ::rtl::OUString SAL_CALL getColumnServiceName(sal_Int32 column)
100 throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
105 #endif // INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_FIREBIRD_RESULTSETMETADATA_HXX
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */