
CallableStatement
48
|
JDBC Pocket Reference
BigDecimal getBigDecimal(int parameterIndex)
BigDecimal getBigDecimal(String parameterName)
Returns a value as a java.math.BigDecimal. (Java 1.2/1.4)
Blob getBlob(int parameterIndex)
Blob getBlob(String parameterName)
Returns a Blob locator, not the BLOB value. Use the Blob’s
getBinaryStream( ) method to retrieve the BLOB value using
an
InputStream, or use its setBinaryStream( ) method to write
the BLOB value using an
OutputStream. (Java 1.2/1.4)
boolean getBoolean(int parameterIndex)
boolean getBoolean(String parameterName)
Returns a value as a boolean. (Java 1.4)
byte getByte(int parameterIndex)
byte getByte(String parameterName)
Returns a value as a byte. (Java 1.4)
byte[ ] getBytes(int parameterIndex)
byte[ ] getBytes(String parameterName)
Returns a value as a byte array. (Java 1.4)
Clob getClob(int parameterIndex)
Clob getClob(String parameterName)
Returns a Clob locator, not the CLOB value. Use the Clob’s
getCharacterStream( ) method to retrieve the CLOB value
using a
Reader, or use its setCharacterStream( ) method to
write the CLOB value using a
Writer. (Java 1.2/1.4)
Date getDate(int parameterIndex)
Date getDate(String parameterName)
Returns a value as a java.sql.Date. (Java 1.4)
Date getDate(int parameterIndex, Calendar calendar)
Returns the value as a java.sql.Date for the specified
Calendar. (Java 1.2/1.4)
double getDouble(int parameterIndex)
double getDouble(String ...