Added Methods |
Array getArray(String )
|
Retrieves the value of a JDBC ARRAY parameter as an Array object in the Java programming language. |
BigDecimal getBigDecimal(String )
|
Retrieves the value of a JDBC NUMERIC parameter as a java.math.BigDecimal object with as many digits to the right of the decimal point as the value contains. |
Blob getBlob(String )
|
Retrieves the value of a JDBC BLOB parameter as a Blob object in the Java programming language. |
boolean getBoolean(String )
|
Retrieves the value of a JDBC BIT parameter as a boolean in the Java programming language. |
byte getByte(String )
|
Retrieves the value of a JDBC TINYINT parameter as a byte in the Java programming language. |
byte[] getBytes(String )
|
Retrieves the value of a JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language. |
Clob getClob(String )
|
Retrieves the value of a JDBC CLOB parameter as a Clob object in the Java programming language. |
Date getDate(String )
|
Retrieves the value of a JDBC DATE parameter as a java.sql.Date object. |
Date getDate(String, Calendar)
|
Retrieves the value of a JDBC DATE parameter as a java.sql.Date object using the given Calendar object to construct the date. |
double getDouble(String )
|
Retrieves the value of a JDBC DOUBLE parameter as a double in the Java programming language. |
float getFloat(String )
|
Retrieves the value of a JDBC FLOAT parameter as a float in the Java programming language. |
int getInt(String )
|
Retrieves the value of a JDBC INTEGER parameter as an int in the Java programming language. |
long getLong(String )
|
Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language. |
Object getObject(String )
|
Retrieves the value of a parameter as an Object in the Java programming language. |
Object getObject(String, Map)
|
Returns an object representing the value of OUT parameter i and uses map for the custom mapping of the parameter value. |
Ref getRef(String )
|
Retrieves the value of a JDBC REF(<structured-type>) parameter as a Ref object in the Java programming language. |
short getShort(String )
|
Retrieves the value of a JDBC SMALLINT parameter as a short in the Java programming language. |
String getString(String )
|
Retrieves the value of a JDBC CHAR VARCHAR or LONGVARCHAR parameter as a String in the Java programming language. |
Time getTime(String )
|
Retrieves the value of a JDBC TIME parameter as a java.sql.Time object. |
Time getTime(String, Calendar)
|
Retrieves the value of a JDBC TIME parameter as a java.sql.Time object using the given Calendar object to construct the time. |
Timestamp getTimestamp(String )
|
Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object. |
Timestamp getTimestamp(String, Calendar)
|
Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object using the given Calendar object to construct the Timestamp object. |
URL getURL(int )
|
Retrieves the value of the designated JDBC DATALINK parameter as a java.net.URL object. |
URL getURL(String )
|
Retrieves the value of a JDBC DATALINK parameter as a java.net.URL object. |
void registerOutParameter(String, int)
|
Registers the OUT parameter named parameterName to the JDBC type sqlType . |
void registerOutParameter(String, int, int)
|
Registers the parameter named parameterName to be of JDBC type sqlType . |
void registerOutParameter(String, int, String)
|
Registers the designated output parameter. |
void setAsciiStream(String, InputStream, int)
|
Sets the designated parameter to the given input stream which will have the specified number of bytes. |
void setBigDecimal(String, BigDecimal)
|
Sets the designated parameter to the given java.math.BigDecimal value. |
void setBinaryStream(String, InputStream, int)
|
Sets the designated parameter to the given input stream which will have the specified number of bytes. |
void setBoolean(String, boolean)
|
Sets the designated parameter to the given Java boolean value. |
void setByte(String, byte)
|
Sets the designated parameter to the given Java byte value. |
void setBytes(String, byte[])
|
Sets the designated parameter to the given Java array of bytes. |
void setCharacterStream(String, Reader, int)
|
Sets the designated parameter to the given Reader object which is the given number of characters long. |
void setDate(String, Date)
|
Sets the designated parameter to the given java.sql.Date value. |
void setDate(String, Date, Calendar)
|
Sets the designated parameter to the given java.sql.Date value using the given Calendar object. |
void setDouble(String, double)
|
Sets the designated parameter to the given Java double value. |
void setFloat(String, float)
|
Sets the designated parameter to the given Java float value. |
void setInt(String, int)
|
Sets the designated parameter to the given Java int value. |
void setLong(String, long)
|
Sets the designated parameter to the given Java long value. |
void setNull(String, int)
|
Sets the designated parameter to SQL NULL . |
void setNull(String, int, String)
|
Sets the designated parameter to SQL NULL . |
void setObject(String, Object)
|
Sets the value of the designated parameter with the given object. |
void setObject(String, Object, int)
|
Sets the value of the designated parameter with the given object. |
void setObject(String, Object, int, int)
|
Sets the value of the designated parameter with the given object. |
void setShort(String, short)
|
Sets the designated parameter to the given Java short value. |
void setString(String, String)
|
Sets the designated parameter to the given Java String value. |
void setTime(String, Time)
|
Sets the designated parameter to the given java.sql.Time value. |
void setTime(String, Time, Calendar)
|
Sets the designated parameter to the given java.sql.Time value using the given Calendar object. |
void setTimestamp(String, Timestamp)
|
Sets the designated parameter to the given java.sql.Timestamp value. |
void setTimestamp(String, Timestamp, Calendar)
|
Sets the designated parameter to the given java.sql.Timestamp value using the given Calendar object. |
void setURL(String, URL)
|
Sets the designated parameter to the given java.net.URL object. |
Changed Methods |
boolean wasNull()
|
Documentation changed from old to new. |
Retrieves whether the last OUT parameter read had the value of SQL NULL . |
Array getArray(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC ARRAY parameter as an Array object in the Java programming language. |
BigDecimal getBigDecimal(int, int)
|
Documentation changed from old to new. |
use getBigDecimal(int parameterIndex) or getBigDecimal(String parameterName) |
BigDecimal getBigDecimal(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC NUMERIC parameter as a java.math.BigDecimal object with as many digits to the right of the decimal point as the value contains. |
Blob getBlob(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC BLOB parameter as a Blob object in the Java programming language. |
boolean getBoolean(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC BIT parameter as a boolean in the Java programming language. |
byte getByte(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC TINYINT parameter as a byte in the Java programming language. |
byte[] getBytes(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language. |
Clob getClob(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC CLOB parameter as a Clob object in the Java programming language. |
Date getDate(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC DATE parameter as a java.sql.Date object. |
Date getDate(int, Calendar)
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC DATE parameter as a java.sql.Date object using the given Calendar object to construct the date. |
double getDouble(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC DOUBLE parameter as a double in the Java programming language. |
float getFloat(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC FLOAT parameter as a float in the Java programming language. |
int getInt(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC INTEGER parameter as an int in the Java programming language. |
long getLong(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC BIGINT parameter as a long in the Java programming language. |
Object getObject(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated parameter as an Object in the Java programming language. |
Object getObject(int, Map)
|
Documentation changed from old to new. |
Returns an object representing the value of OUT parameter i and uses map for the custom mapping of the parameter value. |
Ref getRef(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC REF(<structured-type>) parameter as a Ref object in the Java programming language. |
short getShort(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC SMALLINT parameter as a short in the Java programming language. |
String getString(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC CHAR VARCHAR or LONGVARCHAR parameter as a String in the Java programming language. |
Time getTime(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object. |
Time getTime(int, Calendar)
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object using the given Calendar object to construct the time. |
Timestamp getTimestamp(int )
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC TIMESTAMP parameter as a java.sql.Timestamp object. |
Timestamp getTimestamp(int, Calendar)
|
Documentation changed from old to new. |
Retrieves the value of the designated JDBC TIMESTAMP parameter as a java.sql.Timestamp object using the given Calendar object to construct the Timestamp object. |
void registerOutParameter(int, int, int)
|
Documentation changed from old to new. |
Registers the parameter in ordinal position parameterIndex to be of JDBC type sqlType . |
void registerOutParameter(int, int, String)
|
Documentation changed from old to new. |
Registers the designated output parameter. |