LibreOffice
LibreOffice 24.8 SDK API Reference
 
Loading...
Searching...
No Matches
Table.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
20 module com { module sun { module star { module sdbcx {
21
22 published interface XDataDescriptorFactory;
23 published interface XColumnsSupplier;
24 published interface XIndexesSupplier;
25 published interface XKeysSupplier;
26 published interface XRename;
27 published interface XAlterTable;
28
29
51published service Table
52{
53
56 [optional] interface XDataDescriptorFactory;
57
58
62
63
66 [optional] interface XIndexesSupplier;
67
68
71 [optional] interface XKeysSupplier;
72
73
76 [optional] interface XRename;
77
78
81 [optional] interface XAlterTable;
82
83 // gives access to the properties
85
86
89 [readonly, property] string Name;
90
91
94 [readonly, property] string CatalogName;
95
96
99 [readonly, property] string SchemaName;
100
101
105 [readonly, property] string Description;
106
107
111 [optional, readonly, property] string Type;
112};
113
114
115}; }; }; };
116
117/*===========================================================================
118===========================================================================*/
119
120/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
provides information about and access to the properties from an implementation.
Definition generated_idl_chapter_refs.idl:752
Definition Ambiguous.idl:20
used to specify a table in a database.
Definition Table.idl:52
interface XDataDescriptorFactory
optional, could be used to copy a table.
Definition Table.idl:56
string CatalogName
is the name of the table catalog.
Definition Table.idl:94
interface XRename
optional, allows the renaming of tables.
Definition Table.idl:76
string Description
supplies a comment on the table.
Definition Table.idl:105
string SchemaName
is the name of the table schema.
Definition Table.idl:99
interface XAlterTable
optional, allows the altering of columns.
Definition Table.idl:81
string Type
indicates the type of the table like (TABLE, VIEW, SYSTEM TABLE).
Definition Table.idl:111
string Name
is the name of the table.
Definition Table.idl:89
interface XColumnsSupplier
access to the contained table columns.
Definition Table.idl:61
interface XKeysSupplier
optional, provides the access to the table keys.
Definition Table.idl:71
interface XIndexesSupplier
optional, provides the access of the table indexes.
Definition Table.idl:66