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 / Statement.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  1.3 KB  |  60 lines

  1. package java.sql;
  2.  
  3. public interface Statement {
  4.    ResultSet executeQuery(String var1) throws SQLException;
  5.  
  6.    int executeUpdate(String var1) throws SQLException;
  7.  
  8.    void close() throws SQLException;
  9.  
  10.    int getMaxFieldSize() throws SQLException;
  11.  
  12.    void setMaxFieldSize(int var1) throws SQLException;
  13.  
  14.    int getMaxRows() throws SQLException;
  15.  
  16.    void setMaxRows(int var1) throws SQLException;
  17.  
  18.    void setEscapeProcessing(boolean var1) throws SQLException;
  19.  
  20.    int getQueryTimeout() throws SQLException;
  21.  
  22.    void setQueryTimeout(int var1) throws SQLException;
  23.  
  24.    void cancel() throws SQLException;
  25.  
  26.    SQLWarning getWarnings() throws SQLException;
  27.  
  28.    void clearWarnings() throws SQLException;
  29.  
  30.    void setCursorName(String var1) throws SQLException;
  31.  
  32.    boolean execute(String var1) throws SQLException;
  33.  
  34.    ResultSet getResultSet() throws SQLException;
  35.  
  36.    int getUpdateCount() throws SQLException;
  37.  
  38.    boolean getMoreResults() throws SQLException;
  39.  
  40.    void setFetchDirection(int var1) throws SQLException;
  41.  
  42.    int getFetchDirection() throws SQLException;
  43.  
  44.    void setFetchSize(int var1) throws SQLException;
  45.  
  46.    int getFetchSize() throws SQLException;
  47.  
  48.    int getResultSetConcurrency() throws SQLException;
  49.  
  50.    int getResultSetType() throws SQLException;
  51.  
  52.    void addBatch(String var1) throws SQLException;
  53.  
  54.    void clearBatch() throws SQLException;
  55.  
  56.    int[] executeBatch() throws SQLException;
  57.  
  58.    Connection getConnection() throws SQLException;
  59. }
  60.