Given the connection object conn, the following Connector/J…

Questions

Given the cоnnectiоn оbject conn, the following Connector/J code frаgment prints the result of а query. Whаt 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")); }