Querying
Use the Statement object to query the DB and get a ResultSet object
ResultSet rs = stmt.executeQuery("SELECT * FROM Users");
This executes the specified query, and returns a ResultSet object with the query’s results
Previous slide
Next slide
Back to first slide
View graphic version