How can you retrieve information from a ResultSet?
By invoking the method get (..., String type) on the ResultSet, where type is the database
By invoking the method get (..., Type type) on the ResultSet, where Type is an object
By invoking the method getValue (...), and cast the result to the desired java type.
By invoking the special getter methods on the ResultSet: getString (...), get Boolean (...),