LibreOffice
LibreOffice 7.4 SDK API Reference
ColumnDescriptor.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_sdbcx_ColumnDescriptor_idl__
20 #define __com_sun_star_sdbcx_ColumnDescriptor_idl__
21 
23 
24  module com { module sun { module star { module sdbcx {
25 
26 
32 published service ColumnDescriptor
33 {
35 
36 
41  [property] long Type;
42 
43 
48  [property] string TypeName;
49 
50 
53  [property] long Precision;
54 
55 
58  [property] long Scale;
59 
60 
64  [property] long IsNullable;
65 
66 
70  [property] boolean IsAutoIncrement;
71 
72 
76  [optional, property] boolean IsRowVersion;
77 
78 
81  [optional, property] string Description;
82 
83 
86  [optional, property] string DefaultValue;
87 
90  [optional, property] string AutoIncrementCreation;
91 };
92 
93 
94 }; }; }; };
95 
96 #endif
97 
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: Ambiguous.idl:22
describes the common properties of a database column.
Definition: ColumnDescriptor.idl:33
long Type
is the com::sun::star::sdbc::DataType of the column.
Definition: ColumnDescriptor.idl:34
long Precision
gets a column's number of decimal digits.
Definition: ColumnDescriptor.idl:53
string Description
keeps a description of the object.
Definition: ColumnDescriptor.idl:81
string TypeName
is the type name used by the database.
Definition: ColumnDescriptor.idl:48
long Scale
gets a column's number of digits to right of the decimal point.
Definition: ColumnDescriptor.idl:58
boolean IsAutoIncrement
indicates whether the column is automatically numbered, thus read-only.
Definition: ColumnDescriptor.idl:70
string DefaultValue
keeps a default value for a column, is provided as string.
Definition: ColumnDescriptor.idl:86
boolean IsRowVersion
indicates that the column contains some kind of time or date stamp used to track updates.
Definition: ColumnDescriptor.idl:76
string AutoIncrementCreation
specifies how to create an auto-increment column.
Definition: ColumnDescriptor.idl:90
long IsNullable
indicates the nullability of values in the designated column.
Definition: ColumnDescriptor.idl:64
is used to create a new object within a database.
Definition: Descriptor.idl:41