:: com :: sun :: star :: sdbc ::

constants group ProcedureColumn

Constants
UNKNOWN indicates that the type of the column is unknown. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().  
IN indicates that the column stores IN parameters. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().  
INOUT indicates that the column stores INOUT parameters. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().  
RESULT indicates that the column stores results. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().  
OUT indicates that the column stores OUT parameters. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().  
RETURN Indicates that the column stores return values. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().  
Constants' Details
UNKNOWN
const long UNKNOWN = 0;
Description
indicates that the type of the column is unknown. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
IN
const long IN = 1;
Description
indicates that the column stores IN parameters. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
INOUT
const long INOUT = 2;
Description
indicates that the column stores INOUT parameters. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
RESULT
const long RESULT = 3;
Description
indicates that the column stores results. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
OUT
const long OUT = 4;
Description
indicates that the column stores OUT parameters. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
RETURN
const long RETURN = 5;
Description
Indicates that the column stores return values. A possible value for the column COLUMN_TYPE in the com::sun::star::sdbc::XResultSet returned by the method com::sun::star::sdbc::XDatabaseMetaData::getProcedureColumns().
Top of Page