Class JdbcCallableStatement

A JDBC CallableStatement. For documentation of this class, see java.sql.CallableStatement.

See also

Methods

MethodReturn typeBrief description
addBatch()voidFor documentation of this method, see java.sql.PreparedStatement#addBatch().
addBatch(sql)voidFor documentation of this method, see java.sql.Statement#addBatch(String).
cancel()voidFor documentation of this method, see java.sql.Statement#cancel().
clearBatch()voidFor documentation of this method, see java.sql.Statement#clearBatch().
clearParameters()voidFor documentation of this method, see java.sql.PreparedStatement#clearParameters().
clearWarnings()voidFor documentation of this method, see java.sql.Statement#clearWarnings().
close()voidFor documentation of this method, see java.sql.Statement#close().
execute()BooleanFor documentation of this method, see java.sql.PreparedStatement#execute().
execute(sql)BooleanFor documentation of this method, see java.sql.Statement#execute(String).
execute(sql, autoGeneratedKeys)BooleanFor documentation of this method, see java.sql.Statement#execute(String, int).
execute(sql, columnIndexes)BooleanFor documentation of this method, see java.sql.Statement#execute(String, int[]).
execute(sql, columnNames)BooleanFor documentation of this method, see java.sql.Statement#execute(String, String[]).
executeBatch()Integer[]For documentation of this method, see java.sql.Statement#executeBatch().
executeQuery()JdbcResultSetFor documentation of this method, see java.sql.PreparedStatement#executeQuery().
executeQuery(sql)JdbcResultSetFor documentation of this method, see java.sql.Statement#executeQuery(String).
executeUpdate()IntegerFor documentation of this method, see java.sql.PreparedStatement#executeUpdate().
executeUpdate(sql)IntegerFor documentation of this method, see java.sql.Statement#executeUpdate(String).
executeUpdate(sql, autoGeneratedKeys)IntegerFor documentation of this method, see java.sql.Statement#executeUpdate(String, int).
executeUpdate(sql, columnIndexes)IntegerFor documentation of this method, see java.sql.Statement#executeUpdate(String, int).
executeUpdate(sql, columnNames)IntegerFor documentation of this method, see java.sql.Statement#executeUpdate(String, String[]).
getArray(parameterIndex)JdbcArrayFor documentation of this method, see java.sql.CallableStatement#getArray(int).
getArray(parameterName)JdbcArrayFor documentation of this method, see java.sql.CallableStatement#getArray(String).
getBigDecimal(parameterIndex)BigNumberFor documentation of this method, see java.sql.CallableStatement#getBigDecimal(int).
getBigDecimal(parameterName)BigNumberFor documentation of this method, see java.sql.CallableStatement#getBigDecimal(String).
getBlob(parameterIndex)JdbcBlobFor documentation of this method, see java.sql.CallableStatement#getBlob(int).
getBlob(parameterName)JdbcBlobFor documentation of this method, see java.sql.CallableStatement#getBlob(String).
getBoolean(parameterIndex)BooleanFor documentation of this method, see java.sql.CallableStatement#getBoolean(int).
getBoolean(parameterName)BooleanFor documentation of this method, see java.sql.CallableStatement#getBoolean(String).
getByte(parameterIndex)ByteFor documentation of this method, see java.sql.CallableStatement#getByte(int).
getByte(parameterName)ByteFor documentation of this method, see java.sql.CallableStatement#getByte(String).
getBytes(parameterIndex)Byte[]For documentation of this method, see java.sql.CallableStatement#getBytes(int).
getBytes(parameterName)Byte[]For documentation of this method, see java.sql.CallableStatement#getBytes(String).
getClob(parameterIndex)JdbcClobFor documentation of this method, see java.sql.CallableStatement#getClob(int).
getClob(parameterName)JdbcClobFor documentation of this method, see java.sql.CallableStatement#getClob(String).
getConnection()JdbcConnectionFor documentation of this method, see java.sql.Statement#getConnection().
getDate(parameterIndex)JdbcDateFor documentation of this method, see java.sql.CallableStatement#getDate(int).
getDate(parameterIndex, timeZone)JdbcDateFor documentation of this method, see java.sql.CallableStatement#getDate(int, java.util.Calendar).
getDate(parameterName)JdbcDateFor documentation of this method, see java.sql.CallableStatement#getDate(String).
getDate(parameterName, timeZone)JdbcDateFor documentation of this method, see java.sql.CallableStatement#getDate(String, java.util.Calendar).
getDouble(parameterIndex)NumberFor documentation of this method, see java.sql.CallableStatement#getDouble(int).
getDouble(parameterName)NumberFor documentation of this method, see java.sql.CallableStatement#getDouble(String).
getFetchDirection()IntegerFor documentation of this method, see java.sql.Statement#getFetchDirection().
getFetchSize()IntegerFor documentation of this method, see java.sql.Statement#getFetchSize().
getFloat(parameterIndex)NumberFor documentation of this method, see java.sql.CallableStatement#getFloat(int).
getFloat(parameterName)NumberFor documentation of this method, see java.sql.CallableStatement#getFloat(String).
getGeneratedKeys()JdbcResultSetFor documentation of this method, see java.sql.Statement#getGeneratedKeys().
getInt(parameterIndex)IntegerFor documentation of this method, see java.sql.CallableStatement#getInt(int).
getInt(parameterName)IntegerFor documentation of this method, see java.sql.CallableStatement#getInt(String).
getLong(parameterIndex)IntegerFor documentation of this method, see java.sql.CallableStatement#getLong(int).
getLong(parameterName)IntegerFor documentation of this method, see java.sql.CallableStatement#getLong(String).
getMaxFieldSize()IntegerFor documentation of this method, see java.sql.Statement#getMaxFieldSize().
getMaxRows()IntegerFor documentation of this method, see java.sql.Statement#getMaxRows().
getMetaData()JdbcResultSetMetaDataFor documentation of this method, see java.sql.PreparedStatement#getMetaData().
getMoreResults()BooleanFor documentation of this method, see java.sql.Statement#getMoreResults().
getMoreResults(current)BooleanFor documentation of this method, see java.sql.Statement#getMoreResults(int).
getNClob(parameterIndex)JdbcClobFor documentation of this method, see java.sql.CallableStatement#getNClob(int).
getNClob(parameterName)JdbcClobFor documentation of this method, see java.sql.CallableStatement#getNClob(String).
getNString(parameterIndex)StringFor documentation of this method, see java.sql.CallableStatement#getNString(int).
getNString(parameterName)StringFor documentation of this method, see java.sql.CallableStatement#getNString(String).
getObject(parameterIndex)ObjectFor documentation of this method, see java.sql.CallableStatement#getObject(int).
getObject(parameterName)ObjectFor documentation of this method, see java.sql.CallableStatement#getObject(String).
getParameterMetaData()JdbcParameterMetaDataFor documentation of this method, see java.sql.PreparedStatement#getParameterMetaData().
getQueryTimeout()IntegerFor documentation of this method, see java.sql.Statement#getQueryTimeout().
getRef(parameterIndex)JdbcRefFor documentation of this method, see java.sql.CallableStatement#getRef(int).
getRef(parameterName)JdbcRefFor documentation of this method, see java.sql.CallableStatement#getRef(String).
getResultSet()JdbcResultSetFor documentation of this method, see java.sql.Statement#getResultSet().
getResultSetConcurrency()IntegerFor documentation of this method, see java.sql.Statement#getResultSetConcurrency().
getResultSetHoldability()IntegerFor documentation of this method, see java.sql.Statement#getResultSetHoldability().
getResultSetType()IntegerFor documentation of this method, see java.sql.Statement#getResultSetType().
getRowId(parameterIndex)JdbcRowIdFor documentation of this method, see java.sql.CallableStatement#getRowId(int).
getRowId(parameterName)JdbcRowIdFor documentation of this method, see java.sql.CallableStatement#getRowId(String).
getSQLXML(parameterIndex)JdbcSQLXMLFor documentation of this method, see java.sql.CallableStatement#getSQLXML(int).
getSQLXML(parameterName)JdbcSQLXMLFor documentation of this method, see java.sql.CallableStatement#getSQLXML(String).
getShort(parameterIndex)IntegerFor documentation of this method, see java.sql.CallableStatement#getShort(int).
getShort(parameterName)IntegerFor documentation of this method, see java.sql.CallableStatement#getShort(String).
getString(parameterIndex)StringFor documentation of this method, see java.sql.CallableStatement#getString(int).
getString(parameterName)StringFor documentation of this method, see java.sql.CallableStatement#getString(String).
getTime(parameterIndex)JdbcTimeFor documentation of this method, see java.sql.CallableStatement#getTime(int).
getTime(parameterIndex, timeZone)JdbcTimeFor documentation of this method, see java.sql.CallableStatement#getTime(int, java.util.Calendar).
getTime(parameterName)JdbcTimeFor documentation of this method, see java.sql.CallableStatement#getTime(String).
getTime(parameterName, timeZone)JdbcTimeFor documentation of this method, see java.sql.CallableStatement#getTime(String, java.util.Calendar).
getTimestamp(parameterIndex)JdbcTimestampFor documentation of this method, see java.sql.CallableStatement#getTimestamp(int).
getTimestamp(parameterIndex, timeZone)JdbcTimestampFor documentation of this method, see java.sql.CallableStatement#getTimestamp(int, java.util.Calendar).
getTimestamp(parameterName)JdbcTimestampFor documentation of this method, see java.sql.CallableStatement#getTimestamp(String).
getTimestamp(parameterName, timeZone)JdbcTimestampFor documentation of this method, see java.sql.CallableStatement#getTimestamp(String, java.util.Calendar).
getURL(parameterIndex)StringFor documentation of this method, see java.sql.CallableStatement#getURL(int).
getURL(parameterName)StringFor documentation of this method, see java.sql.CallableStatement#getURL(String).
getUpdateCount()IntegerFor documentation of this method, see java.sql.Statement#getUpdateCount().
getWarnings()String[]Returns the current set of warnings reported by the driver.
isClosed()BooleanFor documentation of this method, see java.sql.Statement#isClosed().
isPoolable()BooleanFor documentation of this method, see java.sql.Statement#isPoolable().
registerOutParameter(parameterIndex, sqlType)voidFor documentation of this method, see java.sql.CallableStatement#registerOutParameter(int, int).
registerOutParameter(parameterIndex, sqlType, scale)voidFor documentation of this method, see java.sql.CallableStatement#registerOutParameter(int, int, int).
registerOutParameter(parameterIndex, sqlType, typeName)voidFor documentation of this method, see java.sql.CallableStatement#registerOutParameter(int, int, String).
registerOutParameter(parameterName, sqlType)voidFor documentation of this method, see java.sql.CallableStatement#registerOutParameter(String, int).
registerOutParameter(parameterName, sqlType, scale)voidFor documentation of this method, see java.sql.CallableStatement#registerOutParameter(String, int, int).
registerOutParameter(parameterName, sqlType, typeName)voidFor documentation of this method, see java.sql.CallableStatement#registerOutParameter(String, int, String).
setArray(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setArray(int, java.sql.Array).
setBigDecimal(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setBigDecimal(int, java.math.BigDecimal).
setBigDecimal(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setBigDecimal(String, java.math.BigDecimal).
setBlob(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setBlob(int, java.sql.Blob).
setBlob(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setBlob(String, java.sql.Blob).
setBoolean(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setBoolean(int, boolean).
setBoolean(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setBoolean(String, boolean).
setByte(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setByte(int, byte).
setByte(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setByte(String, byte).
setBytes(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setBytes(int, byte[]).
setBytes(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setBytes(String, byte[]).
setClob(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setClob(int, java.sql.Clob).
setClob(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setClob(String, java.sql.Clob).
setCursorName(name)voidFor documentation of this method, see java.sql.Statement#setCursorName(String).
setDate(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setDate(int, java.sql.Date).
setDate(parameterIndex, x, timeZone)voidFor documentation of this method, see java.sql.PreparedStatement#setDate(int, java.sql.Date, java.util.Calendar).
setDate(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setDate(String, java.sql.Date).
setDate(parameterName, x, timeZone)voidFor documentation of this method, see java.sql.CallableStatement#setDate(String, java.sql.Date, java.util.Calendar).
setDouble(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setDouble(int, double).
setDouble(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setDouble(String, double).
setEscapeProcessing(enable)voidFor documentation of this method, see java.sql.Statement#setEscapeProcessing(boolean).
setFetchDirection(direction)voidFor documentation of this method, see java.sql.Statement#setFetchDirection(int).
setFetchSize(rows)voidFor documentation of this method, see java.sql.Statement#setFetchSize(int).
setFloat(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setFloat(int, float).
setFloat(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setFloat(String, float).
setInt(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setInt(int, int).
setInt(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setInt(String, int).
setLong(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setLong(int, long).
setLong(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setLong(String, long).
setMaxFieldSize(max)voidFor documentation of this method, see java.sql.Statement#setMaxFieldSize(int).
setMaxRows(max)voidFor documentation of this method, see java.sql.Statement#setMaxRows(int).
setNClob(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setNClob(int, java.sql.NClob).
setNClob(parameterName, value)voidFor documentation of this method, see java.sql.CallableStatement#setNClob(String, java.sql.NClob).
setNString(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setNString(int, String).
setNString(parameterName, value)voidFor documentation of this method, see java.sql.CallableStatement#setNString(String, String).
setNull(parameterIndex, sqlType)voidFor documentation of this method, see java.sql.PreparedStatement#setNull(int, int).
setNull(parameterIndex, sqlType, typeName)voidFor documentation of this method, see java.sql.PreparedStatement#setNull(int, int, String).
setNull(parameterName, sqlType)voidFor documentation of this method, see java.sql.CallableStatement#setNull(String, int).
setNull(parameterName, sqlType, typeName)voidFor documentation of this method, see java.sql.CallableStatement#setNull(String, int, String).
setObject(index, x)voidFor documentation of this method, see java.sql.PreparedStatement#setObject(int, Object).
setObject(parameterIndex, x, targetSqlType)voidFor documentation of this method, see java.sql.PreparedStatement#setObject(int, Object, int).
setObject(parameterIndex, x, targetSqlType, scaleOrLength)voidFor documentation of this method, see java.sql.PreparedStatement#setObject(int, Object, int, int).
setObject(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setObject(String, Object).
setObject(parameterName, x, targetSqlType)voidFor documentation of this method, see java.sql.CallableStatement#setObject(String, Object, int).
setObject(parameterName, x, targetSqlType, scale)voidFor documentation of this method, see java.sql.CallableStatement#setObject(String, Object, int, int).
setPoolable(poolable)voidFor documentation of this method, see java.sql.Statement#setPoolable(boolean).
setQueryTimeout(seconds)voidFor documentation of this method, see java.sql.Statement#setQueryTimeout(int).
setRef(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setRef(int, java.sql.Ref).
setRowId(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setRowId(int, java.sql.RowId).
setRowId(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setRowId(String, java.sql.RowId).
setSQLXML(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setSQLXML(int, java.sql.SQLXML).
setSQLXML(parameterName, xmlObject)voidFor documentation of this method, see java.sql.CallableStatement#setSQLXML(String, java.sql.SQLXML).
setShort(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setShort(int, short).
setShort(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setShort(String, short).
setString(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setString(int, String).
setString(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setString(String, String).
setTime(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setTime(int, java.sql.Time).
setTime(parameterIndex, x, timeZone)voidFor documentation of this method, see java.sql.PreparedStatement#setTime(int, java.sql.Time, java.util.Calendar).
setTime(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setTime(String, java.sql.Time).
setTime(parameterName, x, timeZone)voidFor documentation of this method, see java.sql.CallableStatement#setTime(String, java.sql.Time, java.util.Calendar).
setTimestamp(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setTimestamp(int, java.sql.Timestamp).
setTimestamp(parameterIndex, x, timeZone)voidFor documentation of this method, see java.sql.PreparedStatement#setTimestamp(int, java.sql.Timestamp, java.util.Calendar).
setTimestamp(parameterName, x)voidFor documentation of this method, see java.sql.CallableStatement#setTimestamp(String, java.sql.Timestamp).
setTimestamp(parameterName, x, timeZone)voidFor documentation of this method, see java.sql.CallableStatement#setTimestamp(String, java.sql.Timestamp, java.util.Calendar).
setURL(parameterIndex, x)voidFor documentation of this method, see java.sql.PreparedStatement#setURL(int, java.net.URL).
setURL(parameterName, val)voidFor documentation of this method, see java.sql.CallableStatement#setURL(String, java.net.URL).
wasNull()BooleanFor documentation of this method, see java.sql.CallableStatement#wasNull().

Detailed documentation

addBatch()

For documentation of this method, see java.sql.PreparedStatement#addBatch().


addBatch(sql)

For documentation of this method, see java.sql.Statement#addBatch(String).

Parameters

NameTypeDescription
sqlString

cancel()

For documentation of this method, see java.sql.Statement#cancel().


clearBatch()

For documentation of this method, see java.sql.Statement#clearBatch().


clearParameters()

For documentation of this method, see java.sql.PreparedStatement#clearParameters().


clearWarnings()

For documentation of this method, see java.sql.Statement#clearWarnings().


close()

For documentation of this method, see java.sql.Statement#close().


execute()

For documentation of this method, see java.sql.PreparedStatement#execute().

Return

Boolean


execute(sql)

For documentation of this method, see java.sql.Statement#execute(String).

Parameters

NameTypeDescription
sqlString

Return

Boolean


execute(sql, autoGeneratedKeys)

For documentation of this method, see java.sql.Statement#execute(String, int).

Parameters

NameTypeDescription
sqlString
autoGeneratedKeysInteger

Return

Boolean


execute(sql, columnIndexes)

For documentation of this method, see java.sql.Statement#execute(String, int[]).

Parameters

NameTypeDescription
sqlString
columnIndexesInteger[]

Return

Boolean


execute(sql, columnNames)

For documentation of this method, see java.sql.Statement#execute(String, String[]).

Parameters

NameTypeDescription
sqlString
columnNamesString[]

Return

Boolean


executeBatch()

For documentation of this method, see java.sql.Statement#executeBatch().

Return

Integer[]


executeQuery()

For documentation of this method, see java.sql.PreparedStatement#executeQuery().

Return

JdbcResultSet


executeQuery(sql)

For documentation of this method, see java.sql.Statement#executeQuery(String).

Parameters

NameTypeDescription
sqlString

Return

JdbcResultSet


executeUpdate()

For documentation of this method, see java.sql.PreparedStatement#executeUpdate().

Return

Integer


executeUpdate(sql)

For documentation of this method, see java.sql.Statement#executeUpdate(String).

Parameters

NameTypeDescription
sqlString

Return

Integer


executeUpdate(sql, autoGeneratedKeys)

For documentation of this method, see java.sql.Statement#executeUpdate(String, int).

Parameters

NameTypeDescription
sqlString
autoGeneratedKeysInteger

Return

Integer


executeUpdate(sql, columnIndexes)

For documentation of this method, see java.sql.Statement#executeUpdate(String, int).

Parameters

NameTypeDescription
sqlString
columnIndexesInteger[]

Return

Integer


executeUpdate(sql, columnNames)

For documentation of this method, see java.sql.Statement#executeUpdate(String, String[]).

Parameters

NameTypeDescription
sqlString
columnNamesString[]

Return

Integer


getArray(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getArray(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcArray


getArray(parameterName)

For documentation of this method, see java.sql.CallableStatement#getArray(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcArray


getBigDecimal(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getBigDecimal(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

BigNumber


getBigDecimal(parameterName)

For documentation of this method, see java.sql.CallableStatement#getBigDecimal(String).

Parameters

NameTypeDescription
parameterNameString

Return

BigNumber


getBlob(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getBlob(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcBlob


getBlob(parameterName)

For documentation of this method, see java.sql.CallableStatement#getBlob(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcBlob


getBoolean(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getBoolean(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

Boolean


getBoolean(parameterName)

For documentation of this method, see java.sql.CallableStatement#getBoolean(String).

Parameters

NameTypeDescription
parameterNameString

Return

Boolean


getByte(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getByte(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

Byte


getByte(parameterName)

For documentation of this method, see java.sql.CallableStatement#getByte(String).

Parameters

NameTypeDescription
parameterNameString

Return

Byte


getBytes(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getBytes(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

Byte[]


getBytes(parameterName)

For documentation of this method, see java.sql.CallableStatement#getBytes(String).

Parameters

NameTypeDescription
parameterNameString

Return

Byte[]


getClob(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getClob(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcClob


getClob(parameterName)

For documentation of this method, see java.sql.CallableStatement#getClob(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcClob


getConnection()

For documentation of this method, see java.sql.Statement#getConnection().

Return

JdbcConnection


getDate(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getDate(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcDate


getDate(parameterIndex, timeZone)

For documentation of this method, see java.sql.CallableStatement#getDate(int, java.util.Calendar).

Parameters

NameTypeDescription
parameterIndexInteger
timeZoneString

Return

JdbcDate


getDate(parameterName)

For documentation of this method, see java.sql.CallableStatement#getDate(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcDate


getDate(parameterName, timeZone)

For documentation of this method, see java.sql.CallableStatement#getDate(String, java.util.Calendar).

Parameters

NameTypeDescription
parameterNameString
timeZoneString

Return

JdbcDate


getDouble(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getDouble(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

Number


getDouble(parameterName)

For documentation of this method, see java.sql.CallableStatement#getDouble(String).

Parameters

NameTypeDescription
parameterNameString

Return

Number


getFetchDirection()

For documentation of this method, see java.sql.Statement#getFetchDirection().

Return

Integer


getFetchSize()

For documentation of this method, see java.sql.Statement#getFetchSize().

Return

Integer


getFloat(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getFloat(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

Number


getFloat(parameterName)

For documentation of this method, see java.sql.CallableStatement#getFloat(String).

Parameters

NameTypeDescription
parameterNameString

Return

Number


getGeneratedKeys()

For documentation of this method, see java.sql.Statement#getGeneratedKeys().

Return

JdbcResultSet


getInt(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getInt(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

Integer


getInt(parameterName)

For documentation of this method, see java.sql.CallableStatement#getInt(String).

Parameters

NameTypeDescription
parameterNameString

Return

Integer


getLong(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getLong(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

Integer


getLong(parameterName)

For documentation of this method, see java.sql.CallableStatement#getLong(String).

Parameters

NameTypeDescription
parameterNameString

Return

Integer


getMaxFieldSize()

For documentation of this method, see java.sql.Statement#getMaxFieldSize().

Return

Integer


getMaxRows()

For documentation of this method, see java.sql.Statement#getMaxRows().

Return

Integer


getMetaData()

For documentation of this method, see java.sql.PreparedStatement#getMetaData().

Return

JdbcResultSetMetaData


getMoreResults()

For documentation of this method, see java.sql.Statement#getMoreResults().

Return

Boolean


getMoreResults(current)

For documentation of this method, see java.sql.Statement#getMoreResults(int).

Parameters

NameTypeDescription
currentInteger

Return

Boolean


getNClob(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getNClob(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcClob


getNClob(parameterName)

For documentation of this method, see java.sql.CallableStatement#getNClob(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcClob


getNString(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getNString(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

String


getNString(parameterName)

For documentation of this method, see java.sql.CallableStatement#getNString(String).

Parameters

NameTypeDescription
parameterNameString

Return

String


getObject(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getObject(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

Object


getObject(parameterName)

For documentation of this method, see java.sql.CallableStatement#getObject(String).

Parameters

NameTypeDescription
parameterNameString

Return

Object


getParameterMetaData()

For documentation of this method, see java.sql.PreparedStatement#getParameterMetaData().

Return

JdbcParameterMetaData


getQueryTimeout()

For documentation of this method, see java.sql.Statement#getQueryTimeout().

Return

Integer


getRef(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getRef(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcRef


getRef(parameterName)

For documentation of this method, see java.sql.CallableStatement#getRef(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcRef


getResultSet()

For documentation of this method, see java.sql.Statement#getResultSet().

Return

JdbcResultSet


getResultSetConcurrency()

For documentation of this method, see java.sql.Statement#getResultSetConcurrency().

Return

Integer


getResultSetHoldability()

For documentation of this method, see java.sql.Statement#getResultSetHoldability().

Return

Integer


getResultSetType()

For documentation of this method, see java.sql.Statement#getResultSetType().

Return

Integer


getRowId(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getRowId(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcRowId


getRowId(parameterName)

For documentation of this method, see java.sql.CallableStatement#getRowId(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcRowId


getSQLXML(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getSQLXML(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcSQLXML


getSQLXML(parameterName)

For documentation of this method, see java.sql.CallableStatement#getSQLXML(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcSQLXML


getShort(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getShort(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

Integer


getShort(parameterName)

For documentation of this method, see java.sql.CallableStatement#getShort(String).

Parameters

NameTypeDescription
parameterNameString

Return

Integer


getString(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getString(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

String


getString(parameterName)

For documentation of this method, see java.sql.CallableStatement#getString(String).

Parameters

NameTypeDescription
parameterNameString

Return

String


getTime(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getTime(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcTime


getTime(parameterIndex, timeZone)

For documentation of this method, see java.sql.CallableStatement#getTime(int, java.util.Calendar).

Parameters

NameTypeDescription
parameterIndexInteger
timeZoneString

Return

JdbcTime


getTime(parameterName)

For documentation of this method, see java.sql.CallableStatement#getTime(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcTime


getTime(parameterName, timeZone)

For documentation of this method, see java.sql.CallableStatement#getTime(String, java.util.Calendar).

Parameters

NameTypeDescription
parameterNameString
timeZoneString

Return

JdbcTime


getTimestamp(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getTimestamp(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

JdbcTimestamp


getTimestamp(parameterIndex, timeZone)

For documentation of this method, see java.sql.CallableStatement#getTimestamp(int, java.util.Calendar).

Parameters

NameTypeDescription
parameterIndexInteger
timeZoneString

Return

JdbcTimestamp


getTimestamp(parameterName)

For documentation of this method, see java.sql.CallableStatement#getTimestamp(String).

Parameters

NameTypeDescription
parameterNameString

Return

JdbcTimestamp


getTimestamp(parameterName, timeZone)

For documentation of this method, see java.sql.CallableStatement#getTimestamp(String, java.util.Calendar).

Parameters

NameTypeDescription
parameterNameString
timeZoneString

Return

JdbcTimestamp


getURL(parameterIndex)

For documentation of this method, see java.sql.CallableStatement#getURL(int).

Parameters

NameTypeDescription
parameterIndexInteger

Return

String


getURL(parameterName)

For documentation of this method, see java.sql.CallableStatement#getURL(String).

Parameters

NameTypeDescription
parameterNameString

Return

String


getUpdateCount()

For documentation of this method, see java.sql.Statement#getUpdateCount().

Return

Integer


getWarnings()

Returns the current set of warnings reported by the driver. For documentation of this method, see java.sql.Statement#getWarnings()

Return

String[] — array of warnings


isClosed()

For documentation of this method, see java.sql.Statement#isClosed().

Return

Boolean


isPoolable()

For documentation of this method, see java.sql.Statement#isPoolable().

Return

Boolean


registerOutParameter(parameterIndex, sqlType)

For documentation of this method, see java.sql.CallableStatement#registerOutParameter(int, int).

Parameters

NameTypeDescription
parameterIndexInteger
sqlTypeInteger

registerOutParameter(parameterIndex, sqlType, scale)

For documentation of this method, see java.sql.CallableStatement#registerOutParameter(int, int, int).

Parameters

NameTypeDescription
parameterIndexInteger
sqlTypeInteger
scaleInteger

registerOutParameter(parameterIndex, sqlType, typeName)

For documentation of this method, see java.sql.CallableStatement#registerOutParameter(int, int, String).

Parameters

NameTypeDescription
parameterIndexInteger
sqlTypeInteger
typeNameString

registerOutParameter(parameterName, sqlType)

For documentation of this method, see java.sql.CallableStatement#registerOutParameter(String, int).

Parameters

NameTypeDescription
parameterNameString
sqlTypeInteger

registerOutParameter(parameterName, sqlType, scale)

For documentation of this method, see java.sql.CallableStatement#registerOutParameter(String, int, int).

Parameters

NameTypeDescription
parameterNameString
sqlTypeInteger
scaleInteger

registerOutParameter(parameterName, sqlType, typeName)

For documentation of this method, see java.sql.CallableStatement#registerOutParameter(String, int, String).

Parameters

NameTypeDescription
parameterNameString
sqlTypeInteger
typeNameString

setArray(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setArray(int, java.sql.Array).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcArray

setBigDecimal(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setBigDecimal(int, java.math.BigDecimal).

Parameters

NameTypeDescription
parameterIndexInteger
xBigNumber

setBigDecimal(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setBigDecimal(String, java.math.BigDecimal).

Parameters

NameTypeDescription
parameterNameString
xBigNumber

setBlob(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setBlob(int, java.sql.Blob).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcBlob

setBlob(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setBlob(String, java.sql.Blob).

Parameters

NameTypeDescription
parameterNameString
xJdbcBlob

setBoolean(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setBoolean(int, boolean).

Parameters

NameTypeDescription
parameterIndexInteger
xBoolean

setBoolean(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setBoolean(String, boolean).

Parameters

NameTypeDescription
parameterNameString
xBoolean

setByte(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setByte(int, byte).

Parameters

NameTypeDescription
parameterIndexInteger
xByte

setByte(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setByte(String, byte).

Parameters

NameTypeDescription
parameterNameString
xByte

setBytes(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setBytes(int, byte[]).

Parameters

NameTypeDescription
parameterIndexInteger
xByte[]

setBytes(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setBytes(String, byte[]).

Parameters

NameTypeDescription
parameterNameString
xByte[]

setClob(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setClob(int, java.sql.Clob).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcClob

setClob(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setClob(String, java.sql.Clob).

Parameters

NameTypeDescription
parameterNameString
xJdbcClob

setCursorName(name)

For documentation of this method, see java.sql.Statement#setCursorName(String).

Parameters

NameTypeDescription
nameString

setDate(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setDate(int, java.sql.Date).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcDate

setDate(parameterIndex, x, timeZone)

For documentation of this method, see java.sql.PreparedStatement#setDate(int, java.sql.Date, java.util.Calendar).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcDate
timeZoneString

setDate(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setDate(String, java.sql.Date).

Parameters

NameTypeDescription
parameterNameString
xJdbcDate

setDate(parameterName, x, timeZone)

For documentation of this method, see java.sql.CallableStatement#setDate(String, java.sql.Date, java.util.Calendar).

Parameters

NameTypeDescription
parameterNameString
xJdbcDate
timeZoneString

setDouble(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setDouble(int, double).

Parameters

NameTypeDescription
parameterIndexInteger
xNumber

setDouble(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setDouble(String, double).

Parameters

NameTypeDescription
parameterNameString
xNumber

setEscapeProcessing(enable)

For documentation of this method, see java.sql.Statement#setEscapeProcessing(boolean).

Parameters

NameTypeDescription
enableBoolean

setFetchDirection(direction)

For documentation of this method, see java.sql.Statement#setFetchDirection(int).

Parameters

NameTypeDescription
directionInteger

setFetchSize(rows)

For documentation of this method, see java.sql.Statement#setFetchSize(int).

Parameters

NameTypeDescription
rowsInteger

setFloat(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setFloat(int, float).

Parameters

NameTypeDescription
parameterIndexInteger
xNumber

setFloat(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setFloat(String, float).

Parameters

NameTypeDescription
parameterNameString
xNumber

setInt(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setInt(int, int).

Parameters

NameTypeDescription
parameterIndexInteger
xInteger

setInt(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setInt(String, int).

Parameters

NameTypeDescription
parameterNameString
xInteger

setLong(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setLong(int, long).

Parameters

NameTypeDescription
parameterIndexInteger
xInteger

setLong(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setLong(String, long).

Parameters

NameTypeDescription
parameterNameString
xInteger

setMaxFieldSize(max)

For documentation of this method, see java.sql.Statement#setMaxFieldSize(int).

Parameters

NameTypeDescription
maxInteger

setMaxRows(max)

For documentation of this method, see java.sql.Statement#setMaxRows(int).

Parameters

NameTypeDescription
maxInteger

setNClob(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setNClob(int, java.sql.NClob).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcClob

setNClob(parameterName, value)

For documentation of this method, see java.sql.CallableStatement#setNClob(String, java.sql.NClob).

Parameters

NameTypeDescription
parameterNameString
valueJdbcClob

setNString(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setNString(int, String).

Parameters

NameTypeDescription
parameterIndexInteger
xString

setNString(parameterName, value)

For documentation of this method, see java.sql.CallableStatement#setNString(String, String).

Parameters

NameTypeDescription
parameterNameString
valueString

setNull(parameterIndex, sqlType)

For documentation of this method, see java.sql.PreparedStatement#setNull(int, int).

Parameters

NameTypeDescription
parameterIndexInteger
sqlTypeInteger

setNull(parameterIndex, sqlType, typeName)

For documentation of this method, see java.sql.PreparedStatement#setNull(int, int, String).

Parameters

NameTypeDescription
parameterIndexInteger
sqlTypeInteger
typeNameString

setNull(parameterName, sqlType)

For documentation of this method, see java.sql.CallableStatement#setNull(String, int).

Parameters

NameTypeDescription
parameterNameString
sqlTypeInteger

setNull(parameterName, sqlType, typeName)

For documentation of this method, see java.sql.CallableStatement#setNull(String, int, String).

Parameters

NameTypeDescription
parameterNameString
sqlTypeInteger
typeNameString

setObject(index, x)

For documentation of this method, see java.sql.PreparedStatement#setObject(int, Object).

Parameters

NameTypeDescription
indexInteger
xObject

setObject(parameterIndex, x, targetSqlType)

For documentation of this method, see java.sql.PreparedStatement#setObject(int, Object, int).

Parameters

NameTypeDescription
parameterIndexInteger
xObject
targetSqlTypeInteger

setObject(parameterIndex, x, targetSqlType, scaleOrLength)

For documentation of this method, see java.sql.PreparedStatement#setObject(int, Object, int, int).

Parameters

NameTypeDescription
parameterIndexInteger
xObject
targetSqlTypeInteger
scaleOrLengthInteger

setObject(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setObject(String, Object).

Parameters

NameTypeDescription
parameterNameString
xObject

setObject(parameterName, x, targetSqlType)

For documentation of this method, see java.sql.CallableStatement#setObject(String, Object, int).

Parameters

NameTypeDescription
parameterNameString
xObject
targetSqlTypeInteger

setObject(parameterName, x, targetSqlType, scale)

For documentation of this method, see java.sql.CallableStatement#setObject(String, Object, int, int).

Parameters

NameTypeDescription
parameterNameString
xObject
targetSqlTypeInteger
scaleInteger

setPoolable(poolable)

For documentation of this method, see java.sql.Statement#setPoolable(boolean).

Parameters

NameTypeDescription
poolableBoolean

setQueryTimeout(seconds)

For documentation of this method, see java.sql.Statement#setQueryTimeout(int).

Parameters

NameTypeDescription
secondsInteger

setRef(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setRef(int, java.sql.Ref).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcRef

setRowId(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setRowId(int, java.sql.RowId).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcRowId

setRowId(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setRowId(String, java.sql.RowId).

Parameters

NameTypeDescription
parameterNameString
xJdbcRowId

setSQLXML(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setSQLXML(int, java.sql.SQLXML).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcSQLXML

setSQLXML(parameterName, xmlObject)

For documentation of this method, see java.sql.CallableStatement#setSQLXML(String, java.sql.SQLXML).

Parameters

NameTypeDescription
parameterNameString
xmlObjectJdbcSQLXML

setShort(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setShort(int, short).

Parameters

NameTypeDescription
parameterIndexInteger
xInteger

setShort(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setShort(String, short).

Parameters

NameTypeDescription
parameterNameString
xInteger

setString(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setString(int, String).

Parameters

NameTypeDescription
parameterIndexInteger
xString

setString(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setString(String, String).

Parameters

NameTypeDescription
parameterNameString
xString

setTime(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setTime(int, java.sql.Time).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcTime

setTime(parameterIndex, x, timeZone)

For documentation of this method, see java.sql.PreparedStatement#setTime(int, java.sql.Time, java.util.Calendar).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcTime
timeZoneString

setTime(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setTime(String, java.sql.Time).

Parameters

NameTypeDescription
parameterNameString
xJdbcTime

setTime(parameterName, x, timeZone)

For documentation of this method, see java.sql.CallableStatement#setTime(String, java.sql.Time, java.util.Calendar).

Parameters

NameTypeDescription
parameterNameString
xJdbcTime
timeZoneString

setTimestamp(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setTimestamp(int, java.sql.Timestamp).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcTimestamp

setTimestamp(parameterIndex, x, timeZone)

For documentation of this method, see java.sql.PreparedStatement#setTimestamp(int, java.sql.Timestamp, java.util.Calendar).

Parameters

NameTypeDescription
parameterIndexInteger
xJdbcTimestamp
timeZoneString

setTimestamp(parameterName, x)

For documentation of this method, see java.sql.CallableStatement#setTimestamp(String, java.sql.Timestamp).

Parameters

NameTypeDescription
parameterNameString
xJdbcTimestamp

setTimestamp(parameterName, x, timeZone)

For documentation of this method, see java.sql.CallableStatement#setTimestamp(String, java.sql.Timestamp, java.util.Calendar).

Parameters

NameTypeDescription
parameterNameString
xJdbcTimestamp
timeZoneString

setURL(parameterIndex, x)

For documentation of this method, see java.sql.PreparedStatement#setURL(int, java.net.URL).

Parameters

NameTypeDescription
parameterIndexInteger
xString

setURL(parameterName, val)

For documentation of this method, see java.sql.CallableStatement#setURL(String, java.net.URL).

Parameters

NameTypeDescription
parameterNameString
valString

wasNull()

For documentation of this method, see java.sql.CallableStatement#wasNull().

Return

Boolean

Authentication required

You need to be signed in with Google+ to do that.

Signing you in...

Google Developers needs your permission to do that.