public interface PreparedStatement extends Statement
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 |
---|---|
void |
addBatch() |
void |
clearParameters() |
boolean |
execute() |
ResultSet |
executeQuery() |
int |
executeUpdate() |
ResultSetMetaData |
getMetaData() |
ParameterMetaData |
getParameterMetaData() |
void |
setArray(int parameterIndex,
Array x) |
void |
setAsciiStream(int parameterIndex,
InputStream x) |
void |
setAsciiStream(int parameterIndex,
InputStream x,
int length) |
void |
setAsciiStream(int parameterIndex,
InputStream x,
long length) |
void |
setBigDecimal(int parameterIndex,
BigDecimal x) |
void |
setBinaryStream(int parameterIndex,
InputStream x) |
void |
setBinaryStream(int parameterIndex,
InputStream x,
int length) |
void |
setBinaryStream(int parameterIndex,
InputStream x,
long length) |
void |
setBlob(int parameterIndex,
Blob x) |
void |
setBlob(int parameterIndex,
InputStream inputStream) |
void |
setBlob(int parameterIndex,
InputStream inputStream,
long length) |
void |
setBoolean(int parameterIndex,
boolean x) |
void |
setByte(int parameterIndex,
byte x) |
void |
setBytes(int parameterIndex,
byte[] x) |
void |
setCharacterStream(int parameterIndex,
Reader reader) |
void |
setCharacterStream(int parameterIndex,
Reader reader,
int length) |
void |
setCharacterStream(int parameterIndex,
Reader reader,
long length) |
void |
setClob(int parameterIndex,
Clob x) |
void |
setClob(int parameterIndex,
Reader reader) |
void |
setClob(int parameterIndex,
Reader reader,
long length) |
void |
setDate(int parameterIndex,
Date x) |
void |
setDate(int parameterIndex,
Date x,
Calendar cal) |
void |
setDouble(int parameterIndex,
double x) |
void |
setFloat(int parameterIndex,
float x) |
void |
setInt(int parameterIndex,
int x) |
void |
setLong(int parameterIndex,
long x) |
void |
setNCharacterStream(int parameterIndex,
Reader value) |
void |
setNCharacterStream(int parameterIndex,
Reader value,
long length) |
void |
setNClob(int parameterIndex,
NClob value) |
void |
setNClob(int parameterIndex,
Reader reader) |
void |
setNClob(int parameterIndex,
Reader reader,
long length) |
void |
setNString(int parameterIndex,
String value) |
void |
setNull(int parameterIndex,
int sqlType) |
void |
setNull(int parameterIndex,
int sqlType,
String typeName) |
void |
setObject(int parameterIndex,
Object x) |
void |
setObject(int parameterIndex,
Object x,
int targetSqlType) |
void |
setObject(int parameterIndex,
Object x,
int targetSqlType,
int scaleOrLength) |
void |
setRef(int parameterIndex,
Ref x) |
void |
setRowId(int parameterIndex,
RowId x) |
void |
setShort(int parameterIndex,
short x) |
void |
setSQLXML(int parameterIndex,
SQLXML xmlObject) |
void |
setString(int parameterIndex,
String x) |
void |
setTime(int parameterIndex,
Time x) |
void |
setTime(int parameterIndex,
Time x,
Calendar cal) |
void |
setTimestamp(int parameterIndex,
Timestamp x) |
void |
setTimestamp(int parameterIndex,
Timestamp x,
Calendar cal) |
void |
setUnicodeStream(int parameterIndex,
InputStream x,
int length) |
void |
setURL(int parameterIndex,
URL x) |
addBatch, cancel, clearBatch, clearWarnings, close, closeOnCompletion, execute, execute, execute, execute, executeBatch, executeQuery, executeUpdate, executeUpdate, executeUpdate, executeUpdate, getConnection, getFetchDirection, getFetchSize, getGeneratedKeys, getMaxFieldSize, getMaxRows, getMoreResults, getMoreResults, getQueryTimeout, getResultSet, getResultSetConcurrency, getResultSetHoldability, getResultSetType, getUpdateCount, getWarnings, isClosed, isCloseOnCompletion, isPoolable, isWrapperFor, setCursorName, setEscapeProcessing, setFetchDirection, setFetchSize, setMaxFieldSize, setMaxRows, setPoolable, setQueryTimeout, unwrap
ResultSet executeQuery() throws SQLException
SQLException
int executeUpdate() throws SQLException
SQLException
void setNull(int parameterIndex, int sqlType) throws SQLException
SQLException
void setBoolean(int parameterIndex, boolean x) throws SQLException
SQLException
void setByte(int parameterIndex, byte x) throws SQLException
SQLException
void setShort(int parameterIndex, short x) throws SQLException
SQLException
void setInt(int parameterIndex, int x) throws SQLException
SQLException
void setLong(int parameterIndex, long x) throws SQLException
SQLException
void setFloat(int parameterIndex, float x) throws SQLException
SQLException
void setDouble(int parameterIndex, double x) throws SQLException
SQLException
void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException
SQLException
void setString(int parameterIndex, String x) throws SQLException
SQLException
void setBytes(int parameterIndex, byte[] x) throws SQLException
SQLException
void setDate(int parameterIndex, Date x) throws SQLException
SQLException
void setTime(int parameterIndex, Time x) throws SQLException
SQLException
void setTimestamp(int parameterIndex, Timestamp x) throws SQLException
SQLException
void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException
SQLException
void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException
SQLException
void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException
SQLException
void clearParameters() throws SQLException
SQLException
void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException
SQLException
void setObject(int parameterIndex, Object x) throws SQLException
SQLException
boolean execute() throws SQLException
SQLException
void addBatch() throws SQLException
SQLException
void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException
SQLException
void setRef(int parameterIndex, Ref x) throws SQLException
SQLException
void setBlob(int parameterIndex, Blob x) throws SQLException
SQLException
void setClob(int parameterIndex, Clob x) throws SQLException
SQLException
void setArray(int parameterIndex, Array x) throws SQLException
SQLException
ResultSetMetaData getMetaData() throws SQLException
SQLException
void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException
SQLException
void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException
SQLException
void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException
SQLException
void setNull(int parameterIndex, int sqlType, String typeName) throws SQLException
SQLException
void setURL(int parameterIndex, URL x) throws SQLException
SQLException
ParameterMetaData getParameterMetaData() throws SQLException
SQLException
void setRowId(int parameterIndex, RowId x) throws SQLException
SQLException
void setNString(int parameterIndex, String value) throws SQLException
SQLException
void setNCharacterStream(int parameterIndex, Reader value, long length) throws SQLException
SQLException
void setNClob(int parameterIndex, NClob value) throws SQLException
SQLException
void setClob(int parameterIndex, Reader reader, long length) throws SQLException
SQLException
void setBlob(int parameterIndex, InputStream inputStream, long length) throws SQLException
SQLException
void setNClob(int parameterIndex, Reader reader, long length) throws SQLException
SQLException
void setSQLXML(int parameterIndex, SQLXML xmlObject) throws SQLException
SQLException
void setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) throws SQLException
SQLException
void setAsciiStream(int parameterIndex, InputStream x, long length) throws SQLException
SQLException
void setBinaryStream(int parameterIndex, InputStream x, long length) throws SQLException
SQLException
void setCharacterStream(int parameterIndex, Reader reader, long length) throws SQLException
SQLException
void setAsciiStream(int parameterIndex, InputStream x) throws SQLException
SQLException
void setBinaryStream(int parameterIndex, InputStream x) throws SQLException
SQLException
void setCharacterStream(int parameterIndex, Reader reader) throws SQLException
SQLException
void setNCharacterStream(int parameterIndex, Reader value) throws SQLException
SQLException
void setClob(int parameterIndex, Reader reader) throws SQLException
SQLException
void setBlob(int parameterIndex, InputStream inputStream) throws SQLException
SQLException
void setNClob(int parameterIndex, Reader reader) throws SQLException
SQLException
Copyright © 2009–2018 JolBox. All rights reserved.