xref: /trunk/main/offapi/com/sun/star/sdbc/BestRowType.idl (revision ffd38472365e95f6a578737bc9a5eb0fac624a86)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23#ifndef __com_sun_star_sdbc_BestRowType_idl__
24#define __com_sun_star_sdbc_BestRowType_idl__
25
26 module com {  module sun {  module star {  module sdbc {
27
28
29/** determines the type of the best row identifier.
30 */
31published constants BestRowType
32{
33
34    /** indicates that the best row identifier may or may not be a pseudo-column.
35             A possible value for the column
36             <code>PSEUDO_COLUMN</code>
37             in the
38             <type scope="com::sun::star::sdbc">XResultSet</type>
39             object
40             returned by the method
41             <member>XDatabaseMetaData::getBestRowIdentifier()</member>
42             .
43     */
44    const long UNKNOWN  = 0;
45    //-------------------------------------------------------------------------
46
47    /** indicates that the best row identifier is NOT a pseudo-column.
48             A possible value for the column
49             <code>PSEUDO_COLUMN</code>
50             in the
51             <type scope="com::sun::star::sdbc">XResultSet</type>
52             object
53             returned by the method
54             <member>XDatabaseMetaData::getBestRowIdentifier()</member>
55             .
56     */
57    const long NOT_PSEUDO   = 1;
58    //-------------------------------------------------------------------------
59
60    /** indicates that the best row identifier is a pseudo-column.
61             A possible value for the column
62             <code>PSEUDO_COLUMN</code>
63             in the
64             <type scope="com::sun::star::sdbc">XResultSet</type>
65             object
66             returned by the method
67             <member>XDatabaseMetaData::getBestRowIdentifier()</member>
68             .
69     */
70    const long PSEUDO   = 2;
71};
72
73//=============================================================================
74
75}; }; }; };
76
77/*===========================================================================
78===========================================================================*/
79#endif
80