1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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
32 <code>COLUMN_TYPE</code>
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>
44 com::sun::star::sdbc::XResultSet
45 returned by the method
46 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
50 /** indicates that the column stores INOUT parameters.
51 A possible value for the column
52 <code>COLUMN_TYPE</code>
54 com::sun::star::sdbc::XResultSet
55 returned by the method
56 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
60 /** indicates that the column stores results.
61 A possible value for the column
62 <code>COLUMN_TYPE</code>
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>
74 com::sun::star::sdbc::XResultSet
75 returned by the method
76 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
80 /** Indicates that the column stores return values.
81 A possible value for the column
82 <code>COLUMN_TYPE</code>
84 com::sun::star::sdbc::XResultSet
85 returned by the method
86 com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
88 const long RETURN
= 5;
94 /*===========================================================================
95 ===========================================================================*/
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */