java.sql
Interface ParameterMetaData


public interface ParameterMetaData

Since:
1.4

Field Summary
static int parameterModeIn
           
static int parameterModeInOut
           
static int parameterModeOut
           
static int parameterModeUnknown
           
static int parameterNoNulls
           
static int parameterNullable
           
static int parameterNullableUnknown
           
 
Method Summary
 String getParameterClassName(int param)
           
 int getParameterCount()
           
 int getParameterMode(int param)
           
 int getParameterType(int param)
           
 String getParameterTypeName(int param)
           
 int getPrecision(int param)
           
 int getScale(int param)
           
 int isNullable(int param)
           
 boolean isSigned(int param)
           
 

Field Detail

parameterNoNulls

static final int parameterNoNulls
See Also:
Constant Field Values

parameterNullable

static final int parameterNullable
See Also:
Constant Field Values

parameterNullableUnknown

static final int parameterNullableUnknown
See Also:
Constant Field Values

parameterModeUnknown

static final int parameterModeUnknown
See Also:
Constant Field Values

parameterModeIn

static final int parameterModeIn
See Also:
Constant Field Values

parameterModeInOut

static final int parameterModeInOut
See Also:
Constant Field Values

parameterModeOut

static final int parameterModeOut
See Also:
Constant Field Values
Method Detail

getParameterCount

int getParameterCount()
                      throws SQLException
Throws:
SQLException
Since:
1.4

isNullable

int isNullable(int param)
               throws SQLException
Throws:
SQLException
Since:
1.4

isSigned

boolean isSigned(int param)
                 throws SQLException
Throws:
SQLException
Since:
1.4

getPrecision

int getPrecision(int param)
                 throws SQLException
Throws:
SQLException
Since:
1.4

getScale

int getScale(int param)
             throws SQLException
Throws:
SQLException
Since:
1.4

getParameterType

int getParameterType(int param)
                     throws SQLException
Throws:
SQLException
Since:
1.4

getParameterTypeName

String getParameterTypeName(int param)
                            throws SQLException
Throws:
SQLException
Since:
1.4

getParameterClassName

String getParameterClassName(int param)
                             throws SQLException
Throws:
SQLException
Since:
1.4

getParameterMode

int getParameterMode(int param)
                     throws SQLException
Throws:
SQLException
Since:
1.4