@Deprecated public class PreparedStatementAdaptor extends StatementAdaptor implements java.sql.PreparedStatement
Constructor and Description |
---|
PreparedStatementAdaptor()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
addBatch()
Deprecated.
Adds a set of parameters to this PreparedStatement object's batch of commands.
|
void |
clearParameters()
Deprecated.
Clears the current parameter values immediately.
|
boolean |
execute()
Deprecated.
Executes the SQL statement in this PreparedStatement object, which may be any kind of SQL statement.
|
java.sql.ResultSet |
executeQuery()
Deprecated.
Executes the SQL query in this PreparedStatement object and returns the ResultSet object generated by the query.
|
int |
executeUpdate()
Deprecated.
Executes the SQL statement in this PreparedStatement object, which must be an SQL INSERT, UPDATE or DELETE statement; or an SQL statement that returns nothing, such as a DDL statement.
|
java.sql.ResultSetMetaData |
getMetaData()
Deprecated.
Retrieves a ResultSetMetaData object that contains information about the columns of the ResultSet object that will be returned when this PreparedStatement object is executed.
|
java.sql.ParameterMetaData |
getParameterMetaData()
Deprecated.
Retrieves the number, types and properties of this PreparedStatement object's parameters.
|
void |
setArray(int _i,
java.sql.Array _x)
Deprecated.
Sets the designated parameter to the given Array object.
|
void |
setAsciiStream(int $20,
java.io.InputStream $21)
Deprecated.
|
void |
setAsciiStream(int _parameterIndex,
java.io.InputStream _x,
int _length)
Deprecated.
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
|
void |
setAsciiStream(int $17,
java.io.InputStream $18,
long $19)
Deprecated.
|
void |
setBigDecimal(int _parameterIndex,
java.math.BigDecimal _x)
Deprecated.
Sets the designated parameter to the given java.math.BigDecimal value.
|
void |
setBinaryStream(int $13,
java.io.InputStream $14)
Deprecated.
|
void |
setBinaryStream(int _parameterIndex,
java.io.InputStream _x,
int _length)
Deprecated.
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
|
void |
setBinaryStream(int $10,
java.io.InputStream $11,
long $12)
Deprecated.
|
void |
setBlob(int _i,
java.sql.Blob _x)
Deprecated.
Sets the designated parameter to the given Blob object.
|
void |
setBlob(int $30,
java.io.InputStream $31)
Deprecated.
|
void |
setBlob(int $27,
java.io.InputStream $28,
long $29)
Deprecated.
|
void |
setBoolean(int _parameterIndex,
boolean _x)
Deprecated.
Sets the designated parameter to the given Java boolean value.
|
void |
setByte(int _parameterIndex,
byte _x)
Deprecated.
Sets the designated parameter to the given Java byte value.
|
void |
setBytes(int _parameterIndex,
byte[] _x)
Deprecated.
Sets the designated parameter to the given Java array of bytes.
|
void |
setCharacterStream(int $35,
java.io.Reader $36)
Deprecated.
|
void |
setCharacterStream(int _parameterIndex,
java.io.Reader _reader,
int _length)
Deprecated.
Sets the designated parameter to the given Reader object, which is the given number of characters long.
|
void |
setCharacterStream(int $32,
java.io.Reader $33,
long $34)
Deprecated.
|
void |
setClob(int _i,
java.sql.Clob _x)
Deprecated.
Sets the designated parameter to the given Clob object.
|
void |
setClob(int $42,
java.io.Reader $43)
Deprecated.
|
void |
setClob(int $39,
java.io.Reader $40,
long $41)
Deprecated.
|
void |
setDate(int _parameterIndex,
java.sql.Date _x)
Deprecated.
Sets the designated parameter to the given java.sql.Date value.
|
void |
setDate(int _parameterIndex,
java.sql.Date _x,
java.util.Calendar _cal)
Deprecated.
Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
|
void |
setDouble(int _parameterIndex,
double _x)
Deprecated.
Sets the designated parameter to the given Java double value.
|
void |
setFloat(int _parameterIndex,
float _x)
Deprecated.
Sets the designated parameter to the given Java float value.
|
void |
setInt(int _parameterIndex,
int _x)
Deprecated.
Sets the designated parameter to the given Java int value.
|
void |
setLong(int _parameterIndex,
long _x)
Deprecated.
Sets the designated parameter to the given Java long value.
|
void |
setNCharacterStream(int $25,
java.io.Reader $26)
Deprecated.
|
void |
setNCharacterStream(int $22,
java.io.Reader $23,
long $24)
Deprecated.
|
void |
setNClob(int $1,
java.sql.NClob $2)
Deprecated.
|
void |
setNClob(int $6,
java.io.Reader $7)
Deprecated.
|
void |
setNClob(int $3,
java.io.Reader $4,
long $5)
Deprecated.
|
void |
setNString(int $8,
java.lang.String $9)
Deprecated.
|
void |
setNull(int _parameterIndex,
int _sqlType)
Deprecated.
Sets the designated parameter to SQL NULL.
|
void |
setNull(int _paramIndex,
int _sqlType,
java.lang.String _typeName)
Deprecated.
Sets the designated parameter to SQL NULL.
|
void |
setObject(int _parameterIndex,
java.lang.Object _x)
Deprecated.
Sets the value of the designated parameter using the given object.
|
void |
setObject(int _parameterIndex,
java.lang.Object _x,
int _targetSqlType)
Deprecated.
Sets the value of the designated parameter with the given object.
|
void |
setObject(int _parameterIndex,
java.lang.Object _x,
int _targetSqlType,
int _scale)
Deprecated.
Sets the value of the designated parameter with the given object.
|
void |
setRef(int _i,
java.sql.Ref _x)
Deprecated.
Sets the designated parameter to the given REF(
|
void |
setRowId(int $15,
java.sql.RowId $16)
Deprecated.
|
void |
setShort(int _parameterIndex,
short _x)
Deprecated.
Sets the designated parameter to the given Java short value.
|
void |
setSQLXML(int $37,
java.sql.SQLXML $38)
Deprecated.
|
void |
setString(int _parameterIndex,
java.lang.String _x)
Deprecated.
Sets the designated parameter to the given Java String value.
|
void |
setTime(int _parameterIndex,
java.sql.Time _x)
Deprecated.
Sets the designated parameter to the given java.sql.Time value.
|
void |
setTime(int _parameterIndex,
java.sql.Time _x,
java.util.Calendar _cal)
Deprecated.
Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.
|
void |
setTimestamp(int _parameterIndex,
java.sql.Timestamp _x)
Deprecated.
Sets the designated parameter to the given java.sql.Timestamp value.
|
void |
setTimestamp(int _parameterIndex,
java.sql.Timestamp _x,
java.util.Calendar _cal)
Deprecated.
Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.
|
void |
setUnicodeStream(int _parameterIndex,
java.io.InputStream _x,
int _length)
Deprecated.
Deprecated.
|
void |
setURL(int _parameterIndex,
java.net.URL _x)
Deprecated.
Sets the designated parameter to the given java.net.URL value.
|
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
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
executeLargeUpdate, setObject, setObject
addBatch, cancel, clearBatch, clearWarnings, close, closeOnCompletion, execute, execute, execute, execute, executeBatch, executeLargeBatch, executeLargeUpdate, executeLargeUpdate, executeLargeUpdate, executeLargeUpdate, executeQuery, executeUpdate, executeUpdate, executeUpdate, executeUpdate, getConnection, getFetchDirection, getFetchSize, getGeneratedKeys, getLargeMaxRows, getLargeUpdateCount, getMaxFieldSize, getMaxRows, getMoreResults, getMoreResults, getQueryTimeout, getResultSet, getResultSetConcurrency, getResultSetHoldability, getResultSetType, getUpdateCount, getWarnings, isClosed, isCloseOnCompletion, isPoolable, setCursorName, setEscapeProcessing, setFetchDirection, setFetchSize, setLargeMaxRows, setMaxFieldSize, setMaxRows, setPoolable, setQueryTimeout
public void addBatch()
addBatch
in interface java.sql.PreparedStatement
public void clearParameters()
clearParameters
in interface java.sql.PreparedStatement
public boolean execute()
execute
in interface java.sql.PreparedStatement
public java.sql.ResultSet executeQuery()
executeQuery
in interface java.sql.PreparedStatement
public int executeUpdate()
executeUpdate
in interface java.sql.PreparedStatement
public java.sql.ResultSetMetaData getMetaData()
getMetaData
in interface java.sql.PreparedStatement
public java.sql.ParameterMetaData getParameterMetaData()
getParameterMetaData
in interface java.sql.PreparedStatement
public void setArray(int _i, java.sql.Array _x)
setArray
in interface java.sql.PreparedStatement
public void setAsciiStream(int _parameterIndex, java.io.InputStream _x, int _length)
setAsciiStream
in interface java.sql.PreparedStatement
public void setBigDecimal(int _parameterIndex, java.math.BigDecimal _x)
setBigDecimal
in interface java.sql.PreparedStatement
public void setBinaryStream(int _parameterIndex, java.io.InputStream _x, int _length)
setBinaryStream
in interface java.sql.PreparedStatement
public void setBlob(int _i, java.sql.Blob _x)
setBlob
in interface java.sql.PreparedStatement
public void setBoolean(int _parameterIndex, boolean _x)
setBoolean
in interface java.sql.PreparedStatement
public void setByte(int _parameterIndex, byte _x)
setByte
in interface java.sql.PreparedStatement
public void setBytes(int _parameterIndex, byte[] _x)
setBytes
in interface java.sql.PreparedStatement
public void setCharacterStream(int _parameterIndex, java.io.Reader _reader, int _length)
setCharacterStream
in interface java.sql.PreparedStatement
public void setClob(int _i, java.sql.Clob _x)
setClob
in interface java.sql.PreparedStatement
public void setDate(int _parameterIndex, java.sql.Date _x)
setDate
in interface java.sql.PreparedStatement
public void setDate(int _parameterIndex, java.sql.Date _x, java.util.Calendar _cal)
setDate
in interface java.sql.PreparedStatement
public void setDouble(int _parameterIndex, double _x)
setDouble
in interface java.sql.PreparedStatement
public void setFloat(int _parameterIndex, float _x)
setFloat
in interface java.sql.PreparedStatement
public void setInt(int _parameterIndex, int _x)
setInt
in interface java.sql.PreparedStatement
public void setLong(int _parameterIndex, long _x)
setLong
in interface java.sql.PreparedStatement
public void setNull(int _parameterIndex, int _sqlType)
setNull
in interface java.sql.PreparedStatement
public void setNull(int _paramIndex, int _sqlType, java.lang.String _typeName)
setNull
in interface java.sql.PreparedStatement
public void setObject(int _parameterIndex, java.lang.Object _x)
setObject
in interface java.sql.PreparedStatement
public void setObject(int _parameterIndex, java.lang.Object _x, int _targetSqlType)
setObject
in interface java.sql.PreparedStatement
public void setObject(int _parameterIndex, java.lang.Object _x, int _targetSqlType, int _scale)
setObject
in interface java.sql.PreparedStatement
public void setRef(int _i, java.sql.Ref _x)
setRef
in interface java.sql.PreparedStatement
public void setShort(int _parameterIndex, short _x)
setShort
in interface java.sql.PreparedStatement
public void setString(int _parameterIndex, java.lang.String _x)
setString
in interface java.sql.PreparedStatement
public void setTime(int _parameterIndex, java.sql.Time _x)
setTime
in interface java.sql.PreparedStatement
public void setTime(int _parameterIndex, java.sql.Time _x, java.util.Calendar _cal)
setTime
in interface java.sql.PreparedStatement
public void setTimestamp(int _parameterIndex, java.sql.Timestamp _x)
setTimestamp
in interface java.sql.PreparedStatement
public void setTimestamp(int _parameterIndex, java.sql.Timestamp _x, java.util.Calendar _cal)
setTimestamp
in interface java.sql.PreparedStatement
public void setUnicodeStream(int _parameterIndex, java.io.InputStream _x, int _length)
setUnicodeStream
in interface java.sql.PreparedStatement
public void setURL(int _parameterIndex, java.net.URL _x)
setURL
in interface java.sql.PreparedStatement
public void setNClob(int $1, java.sql.NClob $2) throws java.sql.SQLException
setNClob
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setNClob(int $3, java.io.Reader $4, long $5) throws java.sql.SQLException
setNClob
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setNClob(int $6, java.io.Reader $7) throws java.sql.SQLException
setNClob
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setNString(int $8, java.lang.String $9) throws java.sql.SQLException
setNString
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setBinaryStream(int $10, java.io.InputStream $11, long $12) throws java.sql.SQLException
setBinaryStream
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setBinaryStream(int $13, java.io.InputStream $14) throws java.sql.SQLException
setBinaryStream
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setRowId(int $15, java.sql.RowId $16) throws java.sql.SQLException
setRowId
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setAsciiStream(int $17, java.io.InputStream $18, long $19) throws java.sql.SQLException
setAsciiStream
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setAsciiStream(int $20, java.io.InputStream $21) throws java.sql.SQLException
setAsciiStream
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setNCharacterStream(int $22, java.io.Reader $23, long $24) throws java.sql.SQLException
setNCharacterStream
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setNCharacterStream(int $25, java.io.Reader $26) throws java.sql.SQLException
setNCharacterStream
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setBlob(int $27, java.io.InputStream $28, long $29) throws java.sql.SQLException
setBlob
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setBlob(int $30, java.io.InputStream $31) throws java.sql.SQLException
setBlob
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setCharacterStream(int $32, java.io.Reader $33, long $34) throws java.sql.SQLException
setCharacterStream
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setCharacterStream(int $35, java.io.Reader $36) throws java.sql.SQLException
setCharacterStream
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setSQLXML(int $37, java.sql.SQLXML $38) throws java.sql.SQLException
setSQLXML
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setClob(int $39, java.io.Reader $40, long $41) throws java.sql.SQLException
setClob
in interface java.sql.PreparedStatement
java.sql.SQLException
public void setClob(int $42, java.io.Reader $43) throws java.sql.SQLException
setClob
in interface java.sql.PreparedStatement
java.sql.SQLException
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.