Given the connection object conn, the following Connector/J…
Given the connection object conn, the following Connector/J code fragment prints the result of a query. What is XXX? Statement statement = conn.createStatement(); String sql = “SELECT ID, Name FROM Employee”; ResultSet result = statement.executeQuery(sql); while ( XXX ) { System.out.println( “Employee ID: ” + result.getInt(“ID”) + “Employee Name: ” + result.getString(“Name”)); }