ResultSet rset; // Ref. var. to hold the result of the execution rset = SQLstatement.executeQuery("SQL-query"); ^^^^^^^^^^^^ ( returned by createStatement() ) (1) sends "SQL-query" to the server for execution (2) returns a ResultSet object (that contains the selected tuples) |
Explanation:
|
|