Lines Matching refs:sql

26 package java.sql;
51 * @param sql an SQL statement to be sent to the database, typically a
65 ResultSet executeQuery(String sql) throws SQLException;
74 * @param sql an SQL Data Manipulation Language (DML) statement, such as <code>INSERT</code>, <code>UPDATE</code> or
90 int executeUpdate(String sql) throws SQLException;
330 * @param sql any SQL statement
346 boolean execute(String sql) throws SQLException;
502 * @param sql typically this is a SQL <code>INSERT</code> or
512 void addBatch( String sql ) throws SQLException;
721 * @param sql an SQL Data Manipulation Language (DML) statement, such as <code>INSERT</code>, <code>UPDATE</code> or
746 int executeUpdate(String sql, int autoGeneratedKeys) throws SQLException;
759 * @param sql an SQL Data Manipulation Language (DML) statement, such as <code>INSERT</code>, <code>UPDATE</code> or
781 int executeUpdate(String sql, int columnIndexes[]) throws SQLException;
794 * @param sql an SQL Data Manipulation Language (DML) statement, such as <code>INSERT</code>, <code>UPDATE</code> or
815 int executeUpdate(String sql, String columnNames[]) throws SQLException;
839 * @param sql any SQL statement
868 boolean execute(String sql, int autoGeneratedKeys) throws SQLException;
894 * @param sql any SQL statement
917 boolean execute(String sql, int columnIndexes[]) throws SQLException;
943 * @param sql any SQL statement
967 boolean execute(String sql, String columnNames[]) throws SQLException;
1028 * @see java.sql.Statement#setPoolable(boolean) setPoolable(boolean)