public interface SQLCallableStatement extends CallableStatement
CLOSE_ALL_RESULTS, CLOSE_CURRENT_RESULT, EXECUTE_FAILED, KEEP_CURRENT_RESULT, NO_GENERATED_KEYS, RETURN_GENERATED_KEYS, SUCCESS_NO_INFO| Modifier and Type | Method and Description |
|---|---|
default void |
addBatch() |
default void |
addBatch(String sql) |
default void |
cancel() |
default void |
clearBatch() |
default void |
clearParameters() |
default void |
clearWarnings() |
default void |
close() |
default void |
closeOnCompletion() |
default boolean |
execute() |
default boolean |
execute(String sql) |
default boolean |
execute(String sql,
int autoGeneratedKeys) |
default boolean |
execute(String sql,
int[] columnIndexes) |
default boolean |
execute(String sql,
String[] columnNames) |
default int[] |
executeBatch() |
default ResultSet |
executeQuery(String sql) |
default int |
executeUpdate() |
default int |
executeUpdate(String sql) |
default int |
executeUpdate(String sql,
int autoGeneratedKeys) |
default int |
executeUpdate(String sql,
int[] columnIndexes) |
default int |
executeUpdate(String sql,
String[] columnNames) |
default Array |
getArray(int parameterIndex) |
default Array |
getArray(String parameterName) |
default BigDecimal |
getBigDecimal(int parameterIndex) |
default BigDecimal |
getBigDecimal(int parameterIndex,
int scale) |
default BigDecimal |
getBigDecimal(String parameterName) |
default Blob |
getBlob(int parameterIndex) |
default Blob |
getBlob(String parameterName) |
default boolean |
getBoolean(int parameterIndex) |
default boolean |
getBoolean(String parameterName) |
default byte |
getByte(int parameterIndex) |
default byte |
getByte(String parameterName) |
default byte[] |
getBytes(int parameterIndex) |
default byte[] |
getBytes(String parameterName) |
default Reader |
getCharacterStream(int parameterIndex) |
default Reader |
getCharacterStream(String parameterName) |
default Clob |
getClob(int parameterIndex) |
default Clob |
getClob(String parameterName) |
default Date |
getDate(int parameterIndex) |
default Date |
getDate(int parameterIndex,
Calendar cal) |
default Date |
getDate(String parameterName) |
default Date |
getDate(String parameterName,
Calendar cal) |
default double |
getDouble(int parameterIndex) |
default double |
getDouble(String parameterName) |
default int |
getFetchDirection() |
default int |
getFetchSize() |
default float |
getFloat(int parameterIndex) |
default float |
getFloat(String parameterName) |
default ResultSet |
getGeneratedKeys() |
default int |
getInt(int parameterIndex) |
default int |
getInt(String parameterName) |
default long |
getLong(int parameterIndex) |
default long |
getLong(String parameterName) |
default int |
getMaxFieldSize() |
default int |
getMaxRows() |
default ResultSetMetaData |
getMetaData() |
default boolean |
getMoreResults() |
default boolean |
getMoreResults(int current) |
default Reader |
getNCharacterStream(int parameterIndex) |
default Reader |
getNCharacterStream(String parameterName) |
default NClob |
getNClob(int parameterIndex) |
default NClob |
getNClob(String parameterName) |
default String |
getNString(int parameterIndex) |
default String |
getNString(String parameterName) |
default Object |
getObject(int parameterIndex) |
default <T> T |
getObject(int parameterIndex,
Class<T> type) |
default Object |
getObject(int parameterIndex,
Map<String,Class<?>> map) |
default Object |
getObject(String parameterName) |
default <T> T |
getObject(String parameterName,
Class<T> type) |
default Object |
getObject(String parameterName,
Map<String,Class<?>> map) |
default ParameterMetaData |
getParameterMetaData() |
default int |
getQueryTimeout() |
default Ref |
getRef(int parameterIndex) |
default Ref |
getRef(String parameterName) |
default ResultSet |
getResultSet() |
default int |
getResultSetConcurrency() |
default int |
getResultSetHoldability() |
default int |
getResultSetType() |
default RowId |
getRowId(int parameterIndex) |
default RowId |
getRowId(String parameterName) |
default short |
getShort(int parameterIndex) |
default short |
getShort(String parameterName) |
default SQLXML |
getSQLXML(int parameterIndex) |
default SQLXML |
getSQLXML(String parameterName) |
default String |
getString(int parameterIndex) |
default String |
getString(String parameterName) |
default Time |
getTime(int parameterIndex) |
default Time |
getTime(int parameterIndex,
Calendar cal) |
default Time |
getTime(String parameterName) |
default Time |
getTime(String parameterName,
Calendar cal) |
default Timestamp |
getTimestamp(int parameterIndex) |
default Timestamp |
getTimestamp(int parameterIndex,
Calendar cal) |
default Timestamp |
getTimestamp(String parameterName) |
default Timestamp |
getTimestamp(String parameterName,
Calendar cal) |
default int |
getUpdateCount() |
default URL |
getURL(int parameterIndex) |
default URL |
getURL(String parameterName) |
default SQLWarning |
getWarnings() |
default boolean |
isClosed() |
default boolean |
isCloseOnCompletion() |
default boolean |
isPoolable() |
default boolean |
isWrapperFor(Class<?> iface) |
default void |
registerOutParameter(int parameterIndex,
int sqlType) |
default void |
registerOutParameter(int parameterIndex,
int sqlType,
int scale) |
default void |
registerOutParameter(int parameterIndex,
int sqlType,
String typeName) |
default void |
registerOutParameter(String parameterName,
int sqlType) |
default void |
registerOutParameter(String parameterName,
int sqlType,
int scale) |
default void |
registerOutParameter(String parameterName,
int sqlType,
String typeName) |
default void |
setArray(int parameterIndex,
Array x) |
default void |
setAsciiStream(int parameterIndex,
InputStream x) |
default void |
setAsciiStream(int parameterIndex,
InputStream x,
int length) |
default void |
setAsciiStream(int parameterIndex,
InputStream x,
long length) |
default void |
setAsciiStream(String parameterName,
InputStream x) |
default void |
setAsciiStream(String parameterName,
InputStream x,
int length) |
default void |
setAsciiStream(String parameterName,
InputStream x,
long length) |
default void |
setBigDecimal(int parameterIndex,
BigDecimal x) |
default void |
setBigDecimal(String parameterName,
BigDecimal x) |
default void |
setBinaryStream(int parameterIndex,
InputStream x) |
default void |
setBinaryStream(int parameterIndex,
InputStream x,
int length) |
default void |
setBinaryStream(int parameterIndex,
InputStream x,
long length) |
default void |
setBinaryStream(String parameterName,
InputStream x) |
default void |
setBinaryStream(String parameterName,
InputStream x,
int length) |
default void |
setBinaryStream(String parameterName,
InputStream x,
long length) |
default void |
setBlob(int parameterIndex,
Blob x) |
default void |
setBlob(int parameterIndex,
InputStream inputStream) |
default void |
setBlob(int parameterIndex,
InputStream inputStream,
long length) |
default void |
setBlob(String parameterName,
Blob x) |
default void |
setBlob(String parameterName,
InputStream inputStream) |
default void |
setBlob(String parameterName,
InputStream inputStream,
long length) |
default void |
setBoolean(int parameterIndex,
boolean x) |
default void |
setBoolean(String parameterName,
boolean x) |
default void |
setByte(int parameterIndex,
byte x) |
default void |
setByte(String parameterName,
byte x) |
default void |
setBytes(int parameterIndex,
byte[] x) |
default void |
setBytes(String parameterName,
byte[] x) |
default void |
setCharacterStream(int parameterIndex,
Reader reader) |
default void |
setCharacterStream(int parameterIndex,
Reader reader,
int length) |
default void |
setCharacterStream(int parameterIndex,
Reader reader,
long length) |
default void |
setCharacterStream(String parameterName,
Reader reader) |
default void |
setCharacterStream(String parameterName,
Reader reader,
int length) |
default void |
setCharacterStream(String parameterName,
Reader reader,
long length) |
default void |
setClob(int parameterIndex,
Clob x) |
default void |
setClob(int parameterIndex,
Reader reader) |
default void |
setClob(int parameterIndex,
Reader reader,
long length) |
default void |
setClob(String parameterName,
Clob x) |
default void |
setClob(String parameterName,
Reader reader) |
default void |
setClob(String parameterName,
Reader reader,
long length) |
default void |
setCursorName(String name) |
default void |
setDate(int parameterIndex,
Date x) |
default void |
setDate(int parameterIndex,
Date x,
Calendar cal) |
default void |
setDate(String parameterName,
Date x) |
default void |
setDate(String parameterName,
Date x,
Calendar cal) |
default void |
setDouble(int parameterIndex,
double x) |
default void |
setDouble(String parameterName,
double x) |
default void |
setEscapeProcessing(boolean enable) |
default void |
setFetchDirection(int direction) |
default void |
setFetchSize(int rows) |
default void |
setFloat(int parameterIndex,
float x) |
default void |
setFloat(String parameterName,
float x) |
default void |
setInt(int parameterIndex,
int x) |
default void |
setInt(String parameterName,
int x) |
default void |
setLong(int parameterIndex,
long x) |
default void |
setLong(String parameterName,
long x) |
default void |
setMaxFieldSize(int max) |
default void |
setMaxRows(int max) |
default void |
setNCharacterStream(int parameterIndex,
Reader value) |
default void |
setNCharacterStream(int parameterIndex,
Reader value,
long length) |
default void |
setNCharacterStream(String parameterName,
Reader value) |
default void |
setNCharacterStream(String parameterName,
Reader value,
long length) |
default void |
setNClob(int parameterIndex,
NClob value) |
default void |
setNClob(int parameterIndex,
Reader reader) |
default void |
setNClob(int parameterIndex,
Reader reader,
long length) |
default void |
setNClob(String parameterName,
NClob value) |
default void |
setNClob(String parameterName,
Reader reader) |
default void |
setNClob(String parameterName,
Reader reader,
long length) |
default void |
setNString(int parameterIndex,
String value) |
default void |
setNString(String parameterName,
String value) |
default void |
setNull(int parameterIndex,
int sqlType) |
default void |
setNull(int parameterIndex,
int sqlType,
String typeName) |
default void |
setNull(String parameterName,
int sqlType) |
default void |
setNull(String parameterName,
int sqlType,
String typeName) |
default void |
setObject(int parameterIndex,
Object x) |
default void |
setObject(int parameterIndex,
Object x,
int targetSqlType) |
default void |
setObject(int parameterIndex,
Object x,
int targetSqlType,
int scaleOrLength) |
default void |
setObject(String parameterName,
Object x) |
default void |
setObject(String parameterName,
Object x,
int targetSqlType) |
default void |
setObject(String parameterName,
Object x,
int targetSqlType,
int scale) |
default void |
setPoolable(boolean poolable) |
default void |
setQueryTimeout(int seconds) |
default void |
setRef(int parameterIndex,
Ref x) |
default void |
setRowId(int parameterIndex,
RowId x) |
default void |
setRowId(String parameterName,
RowId x) |
default void |
setShort(int parameterIndex,
short x) |
default void |
setShort(String parameterName,
short x) |
default void |
setSQLXML(int parameterIndex,
SQLXML xmlObject) |
default void |
setSQLXML(String parameterName,
SQLXML xmlObject) |
default void |
setString(int parameterIndex,
String x) |
default void |
setString(String parameterName,
String x) |
default void |
setTime(int parameterIndex,
Time x) |
default void |
setTime(int parameterIndex,
Time x,
Calendar cal) |
default void |
setTime(String parameterName,
Time x) |
default void |
setTime(String parameterName,
Time x,
Calendar cal) |
default void |
setTimestamp(int parameterIndex,
Timestamp x) |
default void |
setTimestamp(int parameterIndex,
Timestamp x,
Calendar cal) |
default void |
setTimestamp(String parameterName,
Timestamp x) |
default void |
setTimestamp(String parameterName,
Timestamp x,
Calendar cal) |
default void |
setUnicodeStream(int parameterIndex,
InputStream x,
int length) |
default void |
setURL(int parameterIndex,
URL x) |
default void |
setURL(String parameterName,
URL val) |
default <T> T |
unwrap(Class<T> iface) |
default boolean |
wasNull() |
registerOutParameter, registerOutParameter, registerOutParameter, registerOutParameter, registerOutParameter, registerOutParameter, setObject, setObjectexecuteLargeUpdate, executeQuery, setObject, setObjectexecuteLargeBatch, executeLargeUpdate, executeLargeUpdate, executeLargeUpdate, executeLargeUpdate, getConnection, getLargeMaxRows, getLargeUpdateCount, setLargeMaxRowsdefault void registerOutParameter(int parameterIndex,
int sqlType)
throws SQLException
registerOutParameter in interface CallableStatementSQLExceptiondefault void registerOutParameter(int parameterIndex,
int sqlType,
int scale)
throws SQLException
registerOutParameter in interface CallableStatementSQLExceptiondefault boolean wasNull()
throws SQLException
wasNull in interface CallableStatementSQLExceptiondefault String getString(int parameterIndex) throws SQLException
getString in interface CallableStatementSQLExceptiondefault boolean getBoolean(int parameterIndex)
throws SQLException
getBoolean in interface CallableStatementSQLExceptiondefault byte getByte(int parameterIndex)
throws SQLException
getByte in interface CallableStatementSQLExceptiondefault short getShort(int parameterIndex)
throws SQLException
getShort in interface CallableStatementSQLExceptiondefault int getInt(int parameterIndex)
throws SQLException
getInt in interface CallableStatementSQLExceptiondefault long getLong(int parameterIndex)
throws SQLException
getLong in interface CallableStatementSQLExceptiondefault float getFloat(int parameterIndex)
throws SQLException
getFloat in interface CallableStatementSQLExceptiondefault double getDouble(int parameterIndex)
throws SQLException
getDouble in interface CallableStatementSQLExceptiondefault BigDecimal getBigDecimal(int parameterIndex, int scale) throws SQLException
getBigDecimal in interface CallableStatementSQLExceptiondefault byte[] getBytes(int parameterIndex)
throws SQLException
getBytes in interface CallableStatementSQLExceptiondefault Date getDate(int parameterIndex) throws SQLException
getDate in interface CallableStatementSQLExceptiondefault Time getTime(int parameterIndex) throws SQLException
getTime in interface CallableStatementSQLExceptiondefault Timestamp getTimestamp(int parameterIndex) throws SQLException
getTimestamp in interface CallableStatementSQLExceptiondefault Object getObject(int parameterIndex) throws SQLException
getObject in interface CallableStatementSQLExceptiondefault BigDecimal getBigDecimal(int parameterIndex) throws SQLException
getBigDecimal in interface CallableStatementSQLExceptiondefault Object getObject(int parameterIndex, Map<String,Class<?>> map) throws SQLException
getObject in interface CallableStatementSQLExceptiondefault Ref getRef(int parameterIndex) throws SQLException
getRef in interface CallableStatementSQLExceptiondefault Blob getBlob(int parameterIndex) throws SQLException
getBlob in interface CallableStatementSQLExceptiondefault Clob getClob(int parameterIndex) throws SQLException
getClob in interface CallableStatementSQLExceptiondefault Array getArray(int parameterIndex) throws SQLException
getArray in interface CallableStatementSQLExceptiondefault Date getDate(int parameterIndex, Calendar cal) throws SQLException
getDate in interface CallableStatementSQLExceptiondefault Time getTime(int parameterIndex, Calendar cal) throws SQLException
getTime in interface CallableStatementSQLExceptiondefault Timestamp getTimestamp(int parameterIndex, Calendar cal) throws SQLException
getTimestamp in interface CallableStatementSQLExceptiondefault void registerOutParameter(int parameterIndex,
int sqlType,
String typeName)
throws SQLException
registerOutParameter in interface CallableStatementSQLExceptiondefault void registerOutParameter(String parameterName, int sqlType) throws SQLException
registerOutParameter in interface CallableStatementSQLExceptiondefault void registerOutParameter(String parameterName, int sqlType, int scale) throws SQLException
registerOutParameter in interface CallableStatementSQLExceptiondefault void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException
registerOutParameter in interface CallableStatementSQLExceptiondefault URL getURL(int parameterIndex) throws SQLException
getURL in interface CallableStatementSQLExceptiondefault void setURL(String parameterName, URL val) throws SQLException
setURL in interface CallableStatementSQLExceptiondefault void setNull(String parameterName, int sqlType) throws SQLException
setNull in interface CallableStatementSQLExceptiondefault void setBoolean(String parameterName, boolean x) throws SQLException
setBoolean in interface CallableStatementSQLExceptiondefault void setByte(String parameterName, byte x) throws SQLException
setByte in interface CallableStatementSQLExceptiondefault void setShort(String parameterName, short x) throws SQLException
setShort in interface CallableStatementSQLExceptiondefault void setInt(String parameterName, int x) throws SQLException
setInt in interface CallableStatementSQLExceptiondefault void setLong(String parameterName, long x) throws SQLException
setLong in interface CallableStatementSQLExceptiondefault void setFloat(String parameterName, float x) throws SQLException
setFloat in interface CallableStatementSQLExceptiondefault void setDouble(String parameterName, double x) throws SQLException
setDouble in interface CallableStatementSQLExceptiondefault void setBigDecimal(String parameterName, BigDecimal x) throws SQLException
setBigDecimal in interface CallableStatementSQLExceptiondefault void setString(String parameterName, String x) throws SQLException
setString in interface CallableStatementSQLExceptiondefault void setBytes(String parameterName, byte[] x) throws SQLException
setBytes in interface CallableStatementSQLExceptiondefault void setDate(String parameterName, Date x) throws SQLException
setDate in interface CallableStatementSQLExceptiondefault void setTime(String parameterName, Time x) throws SQLException
setTime in interface CallableStatementSQLExceptiondefault void setTimestamp(String parameterName, Timestamp x) throws SQLException
setTimestamp in interface CallableStatementSQLExceptiondefault void setAsciiStream(String parameterName, InputStream x, int length) throws SQLException
setAsciiStream in interface CallableStatementSQLExceptiondefault void setBinaryStream(String parameterName, InputStream x, int length) throws SQLException
setBinaryStream in interface CallableStatementSQLExceptiondefault void setObject(String parameterName, Object x, int targetSqlType, int scale) throws SQLException
setObject in interface CallableStatementSQLExceptiondefault void setObject(String parameterName, Object x, int targetSqlType) throws SQLException
setObject in interface CallableStatementSQLExceptiondefault void setObject(String parameterName, Object x) throws SQLException
setObject in interface CallableStatementSQLExceptiondefault void setCharacterStream(String parameterName, Reader reader, int length) throws SQLException
setCharacterStream in interface CallableStatementSQLExceptiondefault void setDate(String parameterName, Date x, Calendar cal) throws SQLException
setDate in interface CallableStatementSQLExceptiondefault void setTime(String parameterName, Time x, Calendar cal) throws SQLException
setTime in interface CallableStatementSQLExceptiondefault void setTimestamp(String parameterName, Timestamp x, Calendar cal) throws SQLException
setTimestamp in interface CallableStatementSQLExceptiondefault void setNull(String parameterName, int sqlType, String typeName) throws SQLException
setNull in interface CallableStatementSQLExceptiondefault String getString(String parameterName) throws SQLException
getString in interface CallableStatementSQLExceptiondefault boolean getBoolean(String parameterName) throws SQLException
getBoolean in interface CallableStatementSQLExceptiondefault byte getByte(String parameterName) throws SQLException
getByte in interface CallableStatementSQLExceptiondefault short getShort(String parameterName) throws SQLException
getShort in interface CallableStatementSQLExceptiondefault int getInt(String parameterName) throws SQLException
getInt in interface CallableStatementSQLExceptiondefault long getLong(String parameterName) throws SQLException
getLong in interface CallableStatementSQLExceptiondefault float getFloat(String parameterName) throws SQLException
getFloat in interface CallableStatementSQLExceptiondefault double getDouble(String parameterName) throws SQLException
getDouble in interface CallableStatementSQLExceptiondefault byte[] getBytes(String parameterName) throws SQLException
getBytes in interface CallableStatementSQLExceptiondefault Date getDate(String parameterName) throws SQLException
getDate in interface CallableStatementSQLExceptiondefault Time getTime(String parameterName) throws SQLException
getTime in interface CallableStatementSQLExceptiondefault Timestamp getTimestamp(String parameterName) throws SQLException
getTimestamp in interface CallableStatementSQLExceptiondefault Object getObject(String parameterName) throws SQLException
getObject in interface CallableStatementSQLExceptiondefault BigDecimal getBigDecimal(String parameterName) throws SQLException
getBigDecimal in interface CallableStatementSQLExceptiondefault Object getObject(String parameterName, Map<String,Class<?>> map) throws SQLException
getObject in interface CallableStatementSQLExceptiondefault Ref getRef(String parameterName) throws SQLException
getRef in interface CallableStatementSQLExceptiondefault Blob getBlob(String parameterName) throws SQLException
getBlob in interface CallableStatementSQLExceptiondefault Clob getClob(String parameterName) throws SQLException
getClob in interface CallableStatementSQLExceptiondefault Array getArray(String parameterName) throws SQLException
getArray in interface CallableStatementSQLExceptiondefault Date getDate(String parameterName, Calendar cal) throws SQLException
getDate in interface CallableStatementSQLExceptiondefault Time getTime(String parameterName, Calendar cal) throws SQLException
getTime in interface CallableStatementSQLExceptiondefault Timestamp getTimestamp(String parameterName, Calendar cal) throws SQLException
getTimestamp in interface CallableStatementSQLExceptiondefault URL getURL(String parameterName) throws SQLException
getURL in interface CallableStatementSQLExceptiondefault RowId getRowId(int parameterIndex) throws SQLException
getRowId in interface CallableStatementSQLExceptiondefault RowId getRowId(String parameterName) throws SQLException
getRowId in interface CallableStatementSQLExceptiondefault void setRowId(String parameterName, RowId x) throws SQLException
setRowId in interface CallableStatementSQLExceptiondefault void setNString(String parameterName, String value) throws SQLException
setNString in interface CallableStatementSQLExceptiondefault void setNCharacterStream(String parameterName, Reader value, long length) throws SQLException
setNCharacterStream in interface CallableStatementSQLExceptiondefault void setNClob(String parameterName, NClob value) throws SQLException
setNClob in interface CallableStatementSQLExceptiondefault void setClob(String parameterName, Reader reader, long length) throws SQLException
setClob in interface CallableStatementSQLExceptiondefault void setBlob(String parameterName, InputStream inputStream, long length) throws SQLException
setBlob in interface CallableStatementSQLExceptiondefault void setNClob(String parameterName, Reader reader, long length) throws SQLException
setNClob in interface CallableStatementSQLExceptiondefault NClob getNClob(int parameterIndex) throws SQLException
getNClob in interface CallableStatementSQLExceptiondefault NClob getNClob(String parameterName) throws SQLException
getNClob in interface CallableStatementSQLExceptiondefault void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException
setSQLXML in interface CallableStatementSQLExceptiondefault SQLXML getSQLXML(int parameterIndex) throws SQLException
getSQLXML in interface CallableStatementSQLExceptiondefault SQLXML getSQLXML(String parameterName) throws SQLException
getSQLXML in interface CallableStatementSQLExceptiondefault String getNString(int parameterIndex) throws SQLException
getNString in interface CallableStatementSQLExceptiondefault String getNString(String parameterName) throws SQLException
getNString in interface CallableStatementSQLExceptiondefault Reader getNCharacterStream(int parameterIndex) throws SQLException
getNCharacterStream in interface CallableStatementSQLExceptiondefault Reader getNCharacterStream(String parameterName) throws SQLException
getNCharacterStream in interface CallableStatementSQLExceptiondefault Reader getCharacterStream(int parameterIndex) throws SQLException
getCharacterStream in interface CallableStatementSQLExceptiondefault Reader getCharacterStream(String parameterName) throws SQLException
getCharacterStream in interface CallableStatementSQLExceptiondefault void setBlob(String parameterName, Blob x) throws SQLException
setBlob in interface CallableStatementSQLExceptiondefault void setClob(String parameterName, Clob x) throws SQLException
setClob in interface CallableStatementSQLExceptiondefault void setAsciiStream(String parameterName, InputStream x, long length) throws SQLException
setAsciiStream in interface CallableStatementSQLExceptiondefault void setBinaryStream(String parameterName, InputStream x, long length) throws SQLException
setBinaryStream in interface CallableStatementSQLExceptiondefault void setCharacterStream(String parameterName, Reader reader, long length) throws SQLException
setCharacterStream in interface CallableStatementSQLExceptiondefault void setAsciiStream(String parameterName, InputStream x) throws SQLException
setAsciiStream in interface CallableStatementSQLExceptiondefault void setBinaryStream(String parameterName, InputStream x) throws SQLException
setBinaryStream in interface CallableStatementSQLExceptiondefault void setCharacterStream(String parameterName, Reader reader) throws SQLException
setCharacterStream in interface CallableStatementSQLExceptiondefault void setNCharacterStream(String parameterName, Reader value) throws SQLException
setNCharacterStream in interface CallableStatementSQLExceptiondefault void setClob(String parameterName, Reader reader) throws SQLException
setClob in interface CallableStatementSQLExceptiondefault void setBlob(String parameterName, InputStream inputStream) throws SQLException
setBlob in interface CallableStatementSQLExceptiondefault void setNClob(String parameterName, Reader reader) throws SQLException
setNClob in interface CallableStatementSQLExceptiondefault <T> T getObject(int parameterIndex,
Class<T> type)
throws SQLException
getObject in interface CallableStatementSQLExceptiondefault <T> T getObject(String parameterName, Class<T> type) throws SQLException
getObject in interface CallableStatementSQLExceptiondefault int executeUpdate()
throws SQLException
executeUpdate in interface PreparedStatementSQLExceptiondefault void setNull(int parameterIndex,
int sqlType)
throws SQLException
setNull in interface PreparedStatementSQLExceptiondefault void setBoolean(int parameterIndex,
boolean x)
throws SQLException
setBoolean in interface PreparedStatementSQLExceptiondefault void setByte(int parameterIndex,
byte x)
throws SQLException
setByte in interface PreparedStatementSQLExceptiondefault void setShort(int parameterIndex,
short x)
throws SQLException
setShort in interface PreparedStatementSQLExceptiondefault void setInt(int parameterIndex,
int x)
throws SQLException
setInt in interface PreparedStatementSQLExceptiondefault void setLong(int parameterIndex,
long x)
throws SQLException
setLong in interface PreparedStatementSQLExceptiondefault void setFloat(int parameterIndex,
float x)
throws SQLException
setFloat in interface PreparedStatementSQLExceptiondefault void setDouble(int parameterIndex,
double x)
throws SQLException
setDouble in interface PreparedStatementSQLExceptiondefault void setBigDecimal(int parameterIndex,
BigDecimal x)
throws SQLException
setBigDecimal in interface PreparedStatementSQLExceptiondefault void setString(int parameterIndex,
String x)
throws SQLException
setString in interface PreparedStatementSQLExceptiondefault void setBytes(int parameterIndex,
byte[] x)
throws SQLException
setBytes in interface PreparedStatementSQLExceptiondefault void setDate(int parameterIndex,
Date x)
throws SQLException
setDate in interface PreparedStatementSQLExceptiondefault void setTime(int parameterIndex,
Time x)
throws SQLException
setTime in interface PreparedStatementSQLExceptiondefault void setTimestamp(int parameterIndex,
Timestamp x)
throws SQLException
setTimestamp in interface PreparedStatementSQLExceptiondefault void setAsciiStream(int parameterIndex,
InputStream x,
int length)
throws SQLException
setAsciiStream in interface PreparedStatementSQLExceptiondefault void setUnicodeStream(int parameterIndex,
InputStream x,
int length)
throws SQLException
setUnicodeStream in interface PreparedStatementSQLExceptiondefault void setBinaryStream(int parameterIndex,
InputStream x,
int length)
throws SQLException
setBinaryStream in interface PreparedStatementSQLExceptiondefault void clearParameters()
throws SQLException
clearParameters in interface PreparedStatementSQLExceptiondefault void setObject(int parameterIndex,
Object x,
int targetSqlType)
throws SQLException
setObject in interface PreparedStatementSQLExceptiondefault void setObject(int parameterIndex,
Object x)
throws SQLException
setObject in interface PreparedStatementSQLExceptiondefault boolean execute()
throws SQLException
execute in interface PreparedStatementSQLExceptiondefault void addBatch()
throws SQLException
addBatch in interface PreparedStatementSQLExceptiondefault void setCharacterStream(int parameterIndex,
Reader reader,
int length)
throws SQLException
setCharacterStream in interface PreparedStatementSQLExceptiondefault void setRef(int parameterIndex,
Ref x)
throws SQLException
setRef in interface PreparedStatementSQLExceptiondefault void setBlob(int parameterIndex,
Blob x)
throws SQLException
setBlob in interface PreparedStatementSQLExceptiondefault void setClob(int parameterIndex,
Clob x)
throws SQLException
setClob in interface PreparedStatementSQLExceptiondefault void setArray(int parameterIndex,
Array x)
throws SQLException
setArray in interface PreparedStatementSQLExceptiondefault ResultSetMetaData getMetaData() throws SQLException
getMetaData in interface PreparedStatementSQLExceptiondefault void setDate(int parameterIndex,
Date x,
Calendar cal)
throws SQLException
setDate in interface PreparedStatementSQLExceptiondefault void setTime(int parameterIndex,
Time x,
Calendar cal)
throws SQLException
setTime in interface PreparedStatementSQLExceptiondefault void setTimestamp(int parameterIndex,
Timestamp x,
Calendar cal)
throws SQLException
setTimestamp in interface PreparedStatementSQLExceptiondefault void setNull(int parameterIndex,
int sqlType,
String typeName)
throws SQLException
setNull in interface PreparedStatementSQLExceptiondefault void setURL(int parameterIndex,
URL x)
throws SQLException
setURL in interface PreparedStatementSQLExceptiondefault ParameterMetaData getParameterMetaData() throws SQLException
getParameterMetaData in interface PreparedStatementSQLExceptiondefault void setRowId(int parameterIndex,
RowId x)
throws SQLException
setRowId in interface PreparedStatementSQLExceptiondefault void setNString(int parameterIndex,
String value)
throws SQLException
setNString in interface PreparedStatementSQLExceptiondefault void setNCharacterStream(int parameterIndex,
Reader value,
long length)
throws SQLException
setNCharacterStream in interface PreparedStatementSQLExceptiondefault void setNClob(int parameterIndex,
NClob value)
throws SQLException
setNClob in interface PreparedStatementSQLExceptiondefault void setClob(int parameterIndex,
Reader reader,
long length)
throws SQLException
setClob in interface PreparedStatementSQLExceptiondefault void setBlob(int parameterIndex,
InputStream inputStream,
long length)
throws SQLException
setBlob in interface PreparedStatementSQLExceptiondefault void setNClob(int parameterIndex,
Reader reader,
long length)
throws SQLException
setNClob in interface PreparedStatementSQLExceptiondefault void setSQLXML(int parameterIndex,
SQLXML xmlObject)
throws SQLException
setSQLXML in interface PreparedStatementSQLExceptiondefault void setObject(int parameterIndex,
Object x,
int targetSqlType,
int scaleOrLength)
throws SQLException
setObject in interface PreparedStatementSQLExceptiondefault void setAsciiStream(int parameterIndex,
InputStream x,
long length)
throws SQLException
setAsciiStream in interface PreparedStatementSQLExceptiondefault void setBinaryStream(int parameterIndex,
InputStream x,
long length)
throws SQLException
setBinaryStream in interface PreparedStatementSQLExceptiondefault void setCharacterStream(int parameterIndex,
Reader reader,
long length)
throws SQLException
setCharacterStream in interface PreparedStatementSQLExceptiondefault void setAsciiStream(int parameterIndex,
InputStream x)
throws SQLException
setAsciiStream in interface PreparedStatementSQLExceptiondefault void setBinaryStream(int parameterIndex,
InputStream x)
throws SQLException
setBinaryStream in interface PreparedStatementSQLExceptiondefault void setCharacterStream(int parameterIndex,
Reader reader)
throws SQLException
setCharacterStream in interface PreparedStatementSQLExceptiondefault void setNCharacterStream(int parameterIndex,
Reader value)
throws SQLException
setNCharacterStream in interface PreparedStatementSQLExceptiondefault void setClob(int parameterIndex,
Reader reader)
throws SQLException
setClob in interface PreparedStatementSQLExceptiondefault void setBlob(int parameterIndex,
InputStream inputStream)
throws SQLException
setBlob in interface PreparedStatementSQLExceptiondefault void setNClob(int parameterIndex,
Reader reader)
throws SQLException
setNClob in interface PreparedStatementSQLExceptiondefault ResultSet executeQuery(String sql) throws SQLException
executeQuery in interface StatementSQLExceptiondefault int executeUpdate(String sql) throws SQLException
executeUpdate in interface StatementSQLExceptiondefault void close()
throws SQLException
close in interface AutoCloseableclose in interface StatementSQLExceptiondefault int getMaxFieldSize()
throws SQLException
getMaxFieldSize in interface StatementSQLExceptiondefault void setMaxFieldSize(int max)
throws SQLException
setMaxFieldSize in interface StatementSQLExceptiondefault int getMaxRows()
throws SQLException
getMaxRows in interface StatementSQLExceptiondefault void setMaxRows(int max)
throws SQLException
setMaxRows in interface StatementSQLExceptiondefault void setEscapeProcessing(boolean enable)
throws SQLException
setEscapeProcessing in interface StatementSQLExceptiondefault int getQueryTimeout()
throws SQLException
getQueryTimeout in interface StatementSQLExceptiondefault void setQueryTimeout(int seconds)
throws SQLException
setQueryTimeout in interface StatementSQLExceptiondefault void cancel()
throws SQLException
cancel in interface StatementSQLExceptiondefault SQLWarning getWarnings() throws SQLException
getWarnings in interface StatementSQLExceptiondefault void clearWarnings()
throws SQLException
clearWarnings in interface StatementSQLExceptiondefault void setCursorName(String name) throws SQLException
setCursorName in interface StatementSQLExceptiondefault boolean execute(String sql) throws SQLException
execute in interface StatementSQLExceptiondefault ResultSet getResultSet() throws SQLException
getResultSet in interface StatementSQLExceptiondefault int getUpdateCount()
throws SQLException
getUpdateCount in interface StatementSQLExceptiondefault boolean getMoreResults()
throws SQLException
getMoreResults in interface StatementSQLExceptiondefault void setFetchDirection(int direction)
throws SQLException
setFetchDirection in interface StatementSQLExceptiondefault int getFetchDirection()
throws SQLException
getFetchDirection in interface StatementSQLExceptiondefault void setFetchSize(int rows)
throws SQLException
setFetchSize in interface StatementSQLExceptiondefault int getFetchSize()
throws SQLException
getFetchSize in interface StatementSQLExceptiondefault int getResultSetConcurrency()
throws SQLException
getResultSetConcurrency in interface StatementSQLExceptiondefault int getResultSetType()
throws SQLException
getResultSetType in interface StatementSQLExceptiondefault void addBatch(String sql) throws SQLException
addBatch in interface StatementSQLExceptiondefault void clearBatch()
throws SQLException
clearBatch in interface StatementSQLExceptiondefault int[] executeBatch()
throws SQLException
executeBatch in interface StatementSQLExceptiondefault boolean getMoreResults(int current)
throws SQLException
getMoreResults in interface StatementSQLExceptiondefault ResultSet getGeneratedKeys() throws SQLException
getGeneratedKeys in interface StatementSQLExceptiondefault int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException
executeUpdate in interface StatementSQLExceptiondefault int executeUpdate(String sql, int[] columnIndexes) throws SQLException
executeUpdate in interface StatementSQLExceptiondefault int executeUpdate(String sql, String[] columnNames) throws SQLException
executeUpdate in interface StatementSQLExceptiondefault boolean execute(String sql, int autoGeneratedKeys) throws SQLException
execute in interface StatementSQLExceptiondefault boolean execute(String sql, int[] columnIndexes) throws SQLException
execute in interface StatementSQLExceptiondefault boolean execute(String sql, String[] columnNames) throws SQLException
execute in interface StatementSQLExceptiondefault int getResultSetHoldability()
throws SQLException
getResultSetHoldability in interface StatementSQLExceptiondefault boolean isClosed()
throws SQLException
isClosed in interface StatementSQLExceptiondefault void setPoolable(boolean poolable)
throws SQLException
setPoolable in interface StatementSQLExceptiondefault boolean isPoolable()
throws SQLException
isPoolable in interface StatementSQLExceptiondefault void closeOnCompletion()
throws SQLException
closeOnCompletion in interface StatementSQLExceptiondefault boolean isCloseOnCompletion()
throws SQLException
isCloseOnCompletion in interface StatementSQLExceptiondefault <T> T unwrap(Class<T> iface) throws SQLException
unwrap in interface WrapperSQLExceptiondefault boolean isWrapperFor(Class<?> iface) throws SQLException
isWrapperFor in interface WrapperSQLExceptionCopyright © 2023 The Apache Software Foundation. All rights reserved.