home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / sql / PreparedStatement.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  1.7 KB  |  79 lines

  1. package java.sql;
  2.  
  3. import java.io.InputStream;
  4. import java.io.Reader;
  5. import java.math.BigDecimal;
  6. import java.util.Calendar;
  7.  
  8. public interface PreparedStatement extends Statement {
  9.    ResultSet executeQuery() throws SQLException;
  10.  
  11.    int executeUpdate() throws SQLException;
  12.  
  13.    void setNull(int var1, int var2) throws SQLException;
  14.  
  15.    void setBoolean(int var1, boolean var2) throws SQLException;
  16.  
  17.    void setByte(int var1, byte var2) throws SQLException;
  18.  
  19.    void setShort(int var1, short var2) throws SQLException;
  20.  
  21.    void setInt(int var1, int var2) throws SQLException;
  22.  
  23.    void setLong(int var1, long var2) throws SQLException;
  24.  
  25.    void setFloat(int var1, float var2) throws SQLException;
  26.  
  27.    void setDouble(int var1, double var2) throws SQLException;
  28.  
  29.    void setBigDecimal(int var1, BigDecimal var2) throws SQLException;
  30.  
  31.    void setString(int var1, String var2) throws SQLException;
  32.  
  33.    void setBytes(int var1, byte[] var2) throws SQLException;
  34.  
  35.    void setDate(int var1, Date var2) throws SQLException;
  36.  
  37.    void setTime(int var1, Time var2) throws SQLException;
  38.  
  39.    void setTimestamp(int var1, Timestamp var2) throws SQLException;
  40.  
  41.    void setAsciiStream(int var1, InputStream var2, int var3) throws SQLException;
  42.  
  43.    void setUnicodeStream(int var1, InputStream var2, int var3) throws SQLException;
  44.  
  45.    void setBinaryStream(int var1, InputStream var2, int var3) throws SQLException;
  46.  
  47.    void clearParameters() throws SQLException;
  48.  
  49.    void setObject(int var1, Object var2, int var3, int var4) throws SQLException;
  50.  
  51.    void setObject(int var1, Object var2, int var3) throws SQLException;
  52.  
  53.    void setObject(int var1, Object var2) throws SQLException;
  54.  
  55.    boolean execute() throws SQLException;
  56.  
  57.    void addBatch() throws SQLException;
  58.  
  59.    void setCharacterStream(int var1, Reader var2, int var3) throws SQLException;
  60.  
  61.    void setRef(int var1, Ref var2) throws SQLException;
  62.  
  63.    void setBlob(int var1, Blob var2) throws SQLException;
  64.  
  65.    void setClob(int var1, Clob var2) throws SQLException;
  66.  
  67.    void setArray(int var1, Array var2) throws SQLException;
  68.  
  69.    ResultSetMetaData getMetaData() throws SQLException;
  70.  
  71.    void setDate(int var1, Date var2, Calendar var3) throws SQLException;
  72.  
  73.    void setTime(int var1, Time var2, Calendar var3) throws SQLException;
  74.  
  75.    void setTimestamp(int var1, Timestamp var2, Calendar var3) throws SQLException;
  76.  
  77.    void setNull(int var1, int var2, String var3) throws SQLException;
  78. }
  79.