public interface SqlOutParam
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
in()
Is this marker  
IN? | 
static SqlOutParam | 
INOUT(Object in,
     int out)
Factory for a INOUT parameter of type  
out. | 
static SqlOutParam | 
INOUT(Object in,
     JDBCType out)
Factory for a INOUT parameter of type  
out. | 
static SqlOutParam | 
INOUT(Object in,
     String out)
Factory for a INOUT parameter of type  
out. | 
static SqlOutParam | 
OUT(int out)
Factory for a OUT parameter of type  
out. | 
static SqlOutParam | 
OUT(JDBCType out)
Factory for a OUT parameter of type  
out. | 
static SqlOutParam | 
OUT(String out)
Factory for a OUT parameter of type  
out. | 
int | 
type()
Get the output type 
 | 
Object | 
value()
Get the input value 
 | 
static SqlOutParam OUT(int out)
out.out - the kind of the type according to JDBC types.static SqlOutParam OUT(String out)
out.out - the kind of the type according to JDBC types.static SqlOutParam OUT(JDBCType out)
out.out - the kind of the type according to JDBC types.static SqlOutParam INOUT(Object in, int out)
out.in - the value to be passed as input.out - the kind of the type according to JDBC types.static SqlOutParam INOUT(Object in, String out)
out.in - the value to be passed as input.out - the kind of the type according to JDBC types.static SqlOutParam INOUT(Object in, JDBCType out)
out.in - the value to be passed as input.out - the kind of the type according to JDBC types.boolean in()
IN?INOUTint type()
Object value()
Copyright © 2023 Eclipse. All rights reserved.