Package totalcross.sql
Interface ParameterMetaData
-
public interface ParameterMetaData- Since:
- 1.4
-
-
Field Summary
Fields Modifier and Type Field Description static intparameterModeInstatic intparameterModeInOutstatic intparameterModeOutstatic intparameterModeUnknownstatic intparameterNoNullsstatic intparameterNullablestatic intparameterNullableUnknown
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetParameterClassName(int param)intgetParameterCount()intgetParameterMode(int param)intgetParameterType(int param)java.lang.StringgetParameterTypeName(int param)intgetPrecision(int param)intgetScale(int param)intisNullable(int param)booleanisSigned(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 java.sql.SQLException- Throws:
java.sql.SQLException- Since:
- 1.4
-
isNullable
int isNullable(int param) throws java.sql.SQLException- Throws:
java.sql.SQLException- Since:
- 1.4
-
isSigned
boolean isSigned(int param) throws java.sql.SQLException- Throws:
java.sql.SQLException- Since:
- 1.4
-
getPrecision
int getPrecision(int param) throws java.sql.SQLException- Throws:
java.sql.SQLException- Since:
- 1.4
-
getScale
int getScale(int param) throws java.sql.SQLException- Throws:
java.sql.SQLException- Since:
- 1.4
-
getParameterType
int getParameterType(int param) throws java.sql.SQLException- Throws:
java.sql.SQLException- Since:
- 1.4
-
getParameterTypeName
java.lang.String getParameterTypeName(int param) throws java.sql.SQLException- Throws:
java.sql.SQLException- Since:
- 1.4
-
getParameterClassName
java.lang.String getParameterClassName(int param) throws java.sql.SQLException- Throws:
java.sql.SQLException- Since:
- 1.4
-
getParameterMode
int getParameterMode(int param) throws java.sql.SQLException- Throws:
java.sql.SQLException- Since:
- 1.4
-
-