public interface PreparedStatement extends Statement
Modifier and Type | Method and Description |
---|---|
void |
addBatch() |
void |
clearParameters() |
boolean |
execute() |
ResultSet |
executeQuery() |
int |
executeUpdate() |
ResultSetMetaData |
getMetaData() |
void |
setArray(int i,
Array x) |
void |
setAsciiStream(int parameterIndex,
InputStream x,
int length) |
void |
setBigDecimal(int parameterIndex,
BigDecimal x) |
void |
setBinaryStream(int parameterIndex,
InputStream x,
int length) |
void |
setBlob(int i,
Blob x) |
void |
setBoolean(int parameterIndex,
boolean x) |
void |
setByte(int parameterIndex,
byte x) |
void |
setBytes(int parameterIndex,
byte[] x) |
void |
setCharacterStream(int parameterIndex,
Reader reader,
int length) |
void |
setClob(int i,
Clob x) |
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 |
setNull(int parameterIndex,
int sqlType) |
void |
setNull(int paramIndex,
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 scale) |
void |
setRef(int i,
Ref x) |
void |
setShort(int parameterIndex,
short x) |
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) |
addBatch, cancel, clearBatch, clearWarnings, close, execute, executeBatch, executeQuery, executeUpdate, getConnection, getFetchDirection, getFetchSize, getMaxFieldSize, getMaxRows, getMoreResults, getQueryTimeout, getResultSet, getResultSetConcurrency, getResultSetType, getUpdateCount, getWarnings, setCursorName, setEscapeProcessing, setFetchDirection, setFetchSize, setMaxFieldSize, setMaxRows, setQueryTimeout
void addBatch() throws SQLException
SQLException
void clearParameters() throws SQLException
SQLException
boolean execute() throws SQLException
SQLException
ResultSet executeQuery() throws SQLException
SQLException
int executeUpdate() throws SQLException
SQLException
ResultSetMetaData getMetaData() throws SQLException
SQLException
void setArray(int i, Array x) throws SQLException
SQLException
void setAsciiStream(int parameterIndex, InputStream x, int length) throws SQLException
SQLException
void setBigDecimal(int parameterIndex, BigDecimal x) throws SQLException
SQLException
void setBinaryStream(int parameterIndex, InputStream x, int length) throws SQLException
SQLException
void setBlob(int i, Blob x) throws SQLException
SQLException
void setBoolean(int parameterIndex, boolean x) throws SQLException
SQLException
void setByte(int parameterIndex, byte x) throws SQLException
SQLException
void setBytes(int parameterIndex, byte[] x) throws SQLException
SQLException
void setCharacterStream(int parameterIndex, Reader reader, int length) throws SQLException
SQLException
void setClob(int i, Clob x) throws SQLException
SQLException
void setDate(int parameterIndex, Date x) throws SQLException
SQLException
void setDate(int parameterIndex, Date x, Calendar cal) throws SQLException
SQLException
void setDouble(int parameterIndex, double x) throws SQLException
SQLException
void setFloat(int parameterIndex, float x) throws SQLException
SQLException
void setInt(int parameterIndex, int x) throws SQLException
SQLException
void setLong(int parameterIndex, long x) throws SQLException
SQLException
void setNull(int parameterIndex, int sqlType) throws SQLException
SQLException
void setNull(int paramIndex, int sqlType, String typeName) throws SQLException
SQLException
void setObject(int parameterIndex, Object x) throws SQLException
SQLException
void setObject(int parameterIndex, Object x, int targetSqlType) throws SQLException
SQLException
void setObject(int parameterIndex, Object x, int targetSqlType, int scale) throws SQLException
SQLException
void setRef(int i, Ref x) throws SQLException
SQLException
void setShort(int parameterIndex, short x) throws SQLException
SQLException
void setString(int parameterIndex, String x) throws SQLException
SQLException
void setTime(int parameterIndex, Time x) throws SQLException
SQLException
void setTime(int parameterIndex, Time x, Calendar cal) throws SQLException
SQLException
void setTimestamp(int parameterIndex, Timestamp x) throws SQLException
SQLException
void setTimestamp(int parameterIndex, Timestamp x, Calendar cal) throws SQLException
SQLException
void setUnicodeStream(int parameterIndex, InputStream x, int length) throws SQLException
SQLException