LibreOffice
LibreOffice 7.1 SDK API Reference
XResultSetMetaData.idl
Go to the documentation of this file.
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#ifndef __com_sun_star_sdbc_XResultSetMetaData_idl__
20#define __com_sun_star_sdbc_XResultSetMetaData_idl__
21
23
25
26 module com { module sun { module star { module sdbc {
27
28
33{
34
42
51 boolean isAutoIncrement([in]long column) raises (SQLException);
52
61 boolean isCaseSensitive([in]long column) raises (SQLException);
62
71 boolean isSearchable([in]long column) raises (SQLException);
72
81 boolean isCurrency([in]long column) raises (SQLException);
82
91 long isNullable([in]long column) raises (SQLException);
92
101 boolean isSigned([in]long column) raises (SQLException);
102
111 long getColumnDisplaySize([in]long column) raises (SQLException);
112
122 string getColumnLabel([in]long column) raises (SQLException);
123
132 string getColumnName([in]long column) raises (SQLException);
133
142 string getSchemaName([in]long column) raises (SQLException);
143
152 long getPrecision([in]long column) raises (SQLException);
153
162 long getScale([in]long column) raises (SQLException);
163
172 string getTableName([in]long column) raises (SQLException);
173
182 string getCatalogName([in]long column) raises (SQLException);
183
192 long getColumnType([in]long column) raises (SQLException);
193
202 string getColumnTypeName([in]long column) raises (SQLException);
203
212 boolean isReadOnly([in]long column) raises (SQLException);
213
222 boolean isWritable([in]long column) raises (SQLException);
223
232 boolean isDefinitelyWritable([in]long column) raises (SQLException);
233
245 string getColumnServiceName([in]long column) raises (SQLException);
246};
247
248
249}; }; }; };
250
251/*===========================================================================
252===========================================================================*/
253#endif
254
255/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
is an exception that provides information on a database access error.
Definition: SQLException.idl:45
can be used to find out about the types and properties of the columns in a ResultSet.
Definition: XResultSetMetaData.idl:33
long getColumnCount()
returns the number of columns in this ResultSet.
base interface of all UNO interfaces
Definition: XInterface.idl:48
Definition: Accessible.idl:22