1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: ProcedureColumn.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_sdbc_ProcedureColumn_idl__
31 #define __com_sun_star_sdbc_ProcedureColumn_idl__
33 module com
{ module sun
{ module star
{ module sdbc
{
36 /** indicates the type of a procedure column.
38 published constants ProcedureColumn
41 /** indicates that the type of the column is unknown. A possible value for
43 <code>COLUMN_TYPE</code>
45 <type scope="com::sun::star::sdbc">XResultSet</type>
46 returned by the method
47 <member scope="com::sun::star::sdbc">XDatabaseMetaData::getProcedureColumns()</member>
50 const long UNKNOWN
= 0;
51 //-------------------------------------------------------------------------
53 /** indicates that the column stores IN parameters.
54 A possible value for the column
55 <code>COLUMN_TYPE</code>
57 <type scope="com::sun::star::sdbc">XResultSet</type>
58 returned by the method
59 <member scope="com::sun::star::sdbc">XDatabaseMetaData::getProcedureColumns()</member>
63 //-------------------------------------------------------------------------
65 /** indicates that the column stores INOUT parameters.
66 A possible value for the column
67 <code>COLUMN_TYPE</code>
69 <type scope="com::sun::star::sdbc">XResultSet</type>
70 returned by the method
71 <member scope="com::sun::star::sdbc">XDatabaseMetaData::getProcedureColumns()</member>
75 //-------------------------------------------------------------------------
77 /** indicates that the column stores results.
78 A possible value for the column
79 <code>COLUMN_TYPE</code>
81 <type scope="com::sun::star::sdbc">XResultSet</type>
82 returned by the method
83 <member scope="com::sun::star::sdbc">XDatabaseMetaData::getProcedureColumns()</member>
86 const long RESULT
= 3;
87 //-------------------------------------------------------------------------
89 /** indicates that the column stores OUT parameters.
90 A possible value for the column
91 <code>COLUMN_TYPE</code>
93 <type scope="com::sun::star::sdbc">XResultSet</type>
94 returned by the method
95 <member scope="com::sun::star::sdbc">XDatabaseMetaData::getProcedureColumns()</member>
99 //-------------------------------------------------------------------------
101 /** Indicates that the column stores return values.
102 A possible value for the column
103 <code>COLUMN_TYPE</code>
105 <type scope="com::sun::star::sdbc">XResultSet</type>
106 returned by the method
107 <member scope="com::sun::star::sdbc">XDatabaseMetaData::getProcedureColumns()</member>
110 const long RETURN
= 5;
113 //=============================================================================
117 /*===========================================================================
118 ===========================================================================*/