Generated by
JDiff

Interface java.sql.CallableStatement

Documentation changed from old to new.

Changed Methods
Array getArray(int) Documentation changed from old to new.
Gets the value of a JDBC ARRAY parameter as an Array object in the Java programming language.
Blob getBlob(int) Documentation changed from old to new.
Gets the value of a JDBC BLOB parameter as a Blob object in the Java programming language.
boolean getBoolean(int) Documentation changed from old to new.
Gets the value of a JDBC BIT parameter as a boolean in the Java programming language.
byte getByte(int) Documentation changed from old to new.
Gets the value of a JDBC TINYINT parameter as a byte in the Java programming language.
byte[] getBytes(int) Documentation changed from old to new.
Gets the value of a 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.
Gets the value of a JDBC CLOB parameter as a Clob object in the Java programming language.
double getDouble(int) Documentation changed from old to new.
Gets the value of a JDBC DOUBLE parameter as a double in the Java programming language.
float getFloat(int) Documentation changed from old to new.
Gets the value of a JDBC FLOAT parameter as a float in the Java programming language.
int getInt(int) Documentation changed from old to new.
Gets the value of a JDBC INTEGER parameter as an int in the Java programming language.
long getLong(int) Documentation changed from old to new.
Gets the value of a JDBC BIGINT parameter as a long in the Java programming language.
Ref getRef(int) Documentation changed from old to new.
Gets the value of a JDBC REF(<structured-type>) parameter as a Ref object in the Java programming language.
short getShort(int) Documentation changed from old to new.
Gets the value of a JDBC SMALLINT parameter as a short in the Java programming language.
String getString(int) Documentation changed from old to new.
Retrieves the value of a JDBC CHAR VARCHAR or LONGVARCHAR parameter as a String in the Java programming language.
boolean wasNull() Documentation changed from old to new.
Indicates whether or not the last OUT parameter read had the value of SQL NULL.
BigDecimal getBigDecimal(int, int) Documentation changed from old to new.
Gets the value of a JDBC NUMERIC parameter as a java.math.BigDecimal object with scale digits to the right of the decimal point.
BigDecimal getBigDecimal(int) Documentation changed from old to new.
Gets 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.
Date getDate(int) Documentation changed from old to new.
Gets the value of a JDBC DATE parameter as a java.sql.Date object.
Date getDate(int, Calendar) Documentation changed from old to new.
Gets the value of a JDBC DATE parameter as a java.sql.Date object using the given Calendar object to construct the date.
Object getObject(int) Documentation changed from old to new.
Gets the value of a 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.
Time getTime(int) Documentation changed from old to new.
Get the value of a JDBC TIME parameter as a java.sql.Time object.
Time getTime(int, Calendar) Documentation changed from old to new.
Gets the value of a 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.
Gets the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object.
Timestamp getTimestamp(int, Calendar) Documentation changed from old to new.
Gets the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object using the given Calendar object to construct the Timestamp object.
void registerOutParameter(int, int) Documentation changed from old to new.
Registers the OUT parameter in ordinal position parameterIndex to the JDBC type sqlType.
void registerOutParameter(int, int, String) Documentation changed from old to new.
Registers the designated output parameter.