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

         

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



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

public interface Statement { void addBatch(String sql) throws SQLException; void cancel() throws SQLException; void clearBatch() throws SQLException; void clearWarnings() throws SQLException; void close() throws SQLException; boolean execute(String sql) throws SQLException; int[] executeBatch() throws SQLException; ResultSet executeQuery(String sql)

throws SQLException;

int executeUpdate(String sql) throws SQLException;

Connection getConnection() throws SQLException;

int getFetchDirection() throws SQLException;

int getFetchSize() throws SQLException;

int getMaxFieldSize() throws SQLException;

int getMaxRows() throws SQLException;

boolean getMoreResults() throws SQLException;

int getQueryTimeout() throws SQLException;



ResultSet getResultSet() throws SQLException;

int getResultSetConcurrency() throws SQLException;

int getResultSetType() throws SQLException;

int getUpdateCount() throws SQLException;

SQLWarning getWarnings() throws SQLException;

void setCursorName(String name) throws SQLException;

void setEscapeProcessing(boolean enable)throws SQLException;

void setFetchDirection(int dir) throws SQLException;

void setFetchSize(int rows) throws SQLException;

void setMaxFieldSize(int max) throws SQLException;

void setMaxRows(int max) throws SQLException;

void setQueryTimeout(int seconds)throws SQLException; }



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