Справочник по Python

Сводка методов класса



Сводка методов класса

public interface PreparedStatement extends Statement {

void addBatch() throws SQLException;

void clearParameters() throws SQLException;

boolean execute() throws SQLException;

ResultSet executeQuery() throws SQLException;

int executeUpdate() throws SQLException;

ResultSetMetaData getMetaData() throws SQLException;

void setArray(int index, Array arr)throws SQLException;

void setAsciiStream(int index, InputStream is,int length) throws SQLException;

void setBigDecimal(int index, BigDecimal d)throws SQLException;

void setBinaryStream(int index, InputStream is,int length) throws SQLException;



void setBlob(int index, Blob b) throws SQLException; void setBoolean(int index, boolean b)throws SQLException;

void setByte(int index, byte b) throws SQLException; void setBytes(int index, byte[] bts)throws SQLException;

void setCharacterStream(int index, Reader rdr,int length) throws SQLException;

void setClob(int index, Clob c) throws SQLException;

void setDate(int index, Date d) throws SQLException;

void setDate(int index, Date d, Calendar cal)throws SQLException; void setDouble(int index, double x)throws SQLException;

void setFloat(int index, float f) throws SQLException;

void setlnt(int index, int x) throws SQLException;

void setLong(int index, long x) throws SQLException;

void setNull(int index, int type) throws SQLException;

void setNull(int index, int type, String tname)throws SQLException;

void setObject(int index, Object ob)throws SQLException;

void setObject(int index, Object ob, int type)throws SQLException;

void setObject(int index, Object ob, int type,

int scale) throws SQLException;

void setRef(int index, Ref ref) throws SQLException;

void setShort(int index, short s) throws SQLException;

void setString(int index, String str)throws SQLException;

void setTime(int index, Time t) throws SQLException;

void setTime(int index, Time t, Calendar cal)throws SQLException;

void setTimestamp(int index, Timestamp ts)throws SQLException;

void setTimestamp(int index, Timestamp ts, Calendar cal)throws SQLException;

void setUnicodeStream(int index, InputStream is,int length) throws SQLException; }



Содержание раздела