home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / sql / Statement.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  1001 b   |  40 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.