Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / sdbc / ProcedureColumn.idl
blob2ddcedb478108879892bfe8611d31aacb7ebbc91
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 .
19 #ifndef __com_sun_star_sdbc_ProcedureColumn_idl__
20 #define __com_sun_star_sdbc_ProcedureColumn_idl__
22 module com { module sun { module star { module sdbc {
25 /** indicates the type of a procedure column.
27 published constants ProcedureColumn
30 /** indicates that the type of the column is unknown. A possible value for
31 the column
32 <code>COLUMN_TYPE</code>
33 in the
34 com::sun::star::sdbc::XResultSet
35 returned by the method
36 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
38 const long UNKNOWN = 0;
40 /** indicates that the column stores IN parameters.
41 A possible value for the column
42 <code>COLUMN_TYPE</code>
43 in the
44 com::sun::star::sdbc::XResultSet
45 returned by the method
46 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
48 const long IN = 1;
50 /** indicates that the column stores INOUT parameters.
51 A possible value for the column
52 <code>COLUMN_TYPE</code>
53 in the
54 com::sun::star::sdbc::XResultSet
55 returned by the method
56 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
58 const long INOUT = 2;
60 /** indicates that the column stores results.
61 A possible value for the column
62 <code>COLUMN_TYPE</code>
63 in the
64 com::sun::star::sdbc::XResultSet
65 returned by the method
66 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
68 const long RESULT = 3;
70 /** indicates that the column stores OUT parameters.
71 A possible value for the column
72 <code>COLUMN_TYPE</code>
73 in the
74 com::sun::star::sdbc::XResultSet
75 returned by the method
76 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
78 const long OUT = 4;
80 /** Indicates that the column stores return values.
81 A possible value for the column
82 <code>COLUMN_TYPE</code>
83 in the
84 com::sun::star::sdbc::XResultSet
85 returned by the method
86 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
88 const long RETURN = 5;
92 }; }; }; };
94 /*===========================================================================
95 ===========================================================================*/
96 #endif
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */