home *** CD-ROM | disk | FTP | other *** search
- package java.sql;
-
- public interface Statement {
- ResultSet executeQuery(String var1) throws SQLException;
-
- int executeUpdate(String var1) throws SQLException;
-
- void close() throws SQLException;
-
- int getMaxFieldSize() throws SQLException;
-
- void setMaxFieldSize(int var1) throws SQLException;
-
- int getMaxRows() throws SQLException;
-
- void setMaxRows(int var1) throws SQLException;
-
- void setEscapeProcessing(boolean var1) throws SQLException;
-
- int getQueryTimeout() throws SQLException;
-
- void setQueryTimeout(int var1) throws SQLException;
-
- void cancel() throws SQLException;
-
- SQLWarning getWarnings() throws SQLException;
-
- void clearWarnings() throws SQLException;
-
- void setCursorName(String var1) throws SQLException;
-
- boolean execute(String var1) throws SQLException;
-
- ResultSet getResultSet() throws SQLException;
-
- int getUpdateCount() throws SQLException;
-
- boolean getMoreResults() throws SQLException;
- }
-