All Packages This Package Previous Next
java.lang.Object | +----sqlj.runtime.profile.ref.RTStatementJDBCBase | +----sqlj.runtime.profile.ref.RTStatementJDBCCallable
getObject
.
getBoolean
method of the
underlying statement.
getBoolean
method of the
underlying statement.
getByte
method of the
underlying statement.
getBytes
method on
the underlying callable statement.
getByte
method of the
underlying statement.
getDate
method on
the underlying callable statement.
getDouble
method of the
underlying statement.
getDouble
method of the
underlying statement.
getFloat
method of the
underlying statement.
getFloat
method of the
underlying statement.
getInt
method of the
underlying statement.
getInt
method of the
underlying statement.
getLong
method of the
underlying statement.
getLong
method of the
underlying statement.
getObject
.
getShort
method of the
underlying statement.
getShort
method of the
underlying statement.
getString
method on
the underlying callable statement.
getTime
method on
the underlying callable statement.
getTimestamp
method on
the underlying callable statement.
registerOutParameter
on the underlying callable
statement.
protected CallableStatement callableStmt
public RTStatementJDBCCallable(CallableStatement callableStmt)
public CallableStatement getJDBCCallableStatement()
public void registerOutParameters(EntryInfo entryInfo) throws SQLException
registerOutParameter
is called using the SQLType for that
parameter.
public void registerOutParameter(int paramIndex, int sqlType) throws SQLException
registerOutParameter
on the underlying callable
statement.
public String getString(int parameterIndex) throws SQLException
getString
method on
the underlying callable statement.
public byte[] getBytes(int parameterIndex) throws SQLException
getBytes
method on
the underlying callable statement.
public Date getDate(int parameterIndex) throws SQLException
getDate
method on
the underlying callable statement.
public Time getTime(int parameterIndex) throws SQLException
getTime
method on
the underlying callable statement.
public Timestamp getTimestamp(int parameterIndex) throws SQLException
getTimestamp
method on
the underlying callable statement.
public boolean getBooleanNoNull(int parameterIndex) throws SQLException
getBoolean
method of the
underlying statement. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public byte getByteNoNull(int parameterIndex) throws SQLException
getByte
method of the
underlying statement. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public short getShortNoNull(int parameterIndex) throws SQLException
getShort
method of the
underlying statement. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public int getIntNoNull(int parameterIndex) throws SQLException
getInt
method of the
underlying statement. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public long getLongNoNull(int parameterIndex) throws SQLException
getLong
method of the
underlying statement. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public float getFloatNoNull(int parameterIndex) throws SQLException
getFloat
method of the
underlying statement. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public double getDoubleNoNull(int parameterIndex) throws SQLException
getDouble
method of the
underlying statement. If a subsequent call to wasNull
returns true, a SQLNullException is raised. Otherwise the result
is returned.
public Boolean getBooleanWrapper(int columnIndex) throws SQLException
getBoolean
method of the
underlying statement. If a subsequent call to wasNull
returns true, null is returned. Otherwise the appropriate wrapper
object is created and returned using the value of the fetched
primitive type.
public Byte getByteWrapper(int columnIndex) throws SQLException
getByte
method of the
underlying statement. If a subsequent call to wasNull
returns true, null is returned. Otherwise the appropriate wrapper
object is created and returned using the value of the fetched
primitive type.
public Short getShortWrapper(int columnIndex) throws SQLException
getShort
method of the
underlying statement. If a subsequent call to wasNull
returns true, null is returned. Otherwise the appropriate wrapper
object is created and returned using the value of the fetched
primitive type.
public Integer getIntWrapper(int columnIndex) throws SQLException
getInt
method of the
underlying statement. If a subsequent call to wasNull
returns true, null is returned. Otherwise the appropriate wrapper
object is created and returned using the value of the fetched
primitive type.
public Long getLongWrapper(int columnIndex) throws SQLException
getLong
method of the
underlying statement. If a subsequent call to wasNull
returns true, null is returned. Otherwise the appropriate wrapper
object is created and returned using the value of the fetched
primitive type.
public Float getFloatWrapper(int columnIndex) throws SQLException
getFloat
method of the
underlying statement. If a subsequent call to wasNull
returns true, null is returned. Otherwise the appropriate wrapper
object is created and returned using the value of the fetched
primitive type.
public Double getDoubleWrapper(int columnIndex) throws SQLException
getDouble
method of the
underlying statement. If a subsequent call to wasNull
returns true, null is returned. Otherwise the appropriate wrapper
object is created and returned using the value of the fetched
primitive type.
public Object getObject(int columnIndex, Class objectType) throws SQLException
getObject
. Verifies that the object fetched can be
assigned to an argument having the passed class object type.
public static void checkObjectClass(Object object, Class expectedType) throws SQLException
getObject
method.
If the passed object is null, no exception is raised.
public BigDecimal getBigDecimal(int columnIndex) throws SQLException
getObject
.
All Packages This Package Previous Next