|
|||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
com.northgateis.reality.realsql
Class RealParamData
java.lang.Object | +--com.northgateis.reality.realsql.RealParamData
- public class RealParamData
- extends java.lang.Object
Container class for IN/OUT parameters used by the set/getXXX methods in the PreparedStatement and CallableStatement interfaces.
Method Summary | |
protected byte[]
|
getBytes()
Get the parameter value as a byte array. |
protected int
|
getParamIndex()
Get the parameter ordinal value |
protected int
|
getParamLen()
Get the parameter length |
protected int
|
getParamOffset()
Get the parameter offset |
protected int
|
getParamScale()
Get the parameter scale |
protected int
|
getParamType()
Get the parameter JDBC data type |
protected java.lang.String
|
getParamValue()
Get the parameter string value |
protected void
|
setParamValue(java.lang.String value)
Set the parameter string value |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Method Detail |
getParamIndex
protected int getParamIndex()
- Get the parameter ordinal value
- Returns:
- parameter ordinal position.
getParamType
protected int getParamType()
- Get the parameter JDBC data type
- Returns:
- parameter data type.
getParamLen
protected int getParamLen()
- Get the parameter length
- Returns:
- parameter length.
getParamOffset
protected int getParamOffset()
- Get the parameter offset
- Returns:
- parameter offset.
getParamScale
protected int getParamScale()
- Get the parameter scale
- Returns:
- parameter scale.
getParamValue
protected java.lang.String getParamValue()
- Get the parameter string value
- Returns:
- parameter value.
setParamValue
protected void setParamValue(java.lang.String value)
- Set the parameter string value
- Parameters:
parameter
- value.
getBytes
protected byte[] getBytes()
- Get the parameter value as a byte array.
- Returns:
- parameter byte array.
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |