Working with a result set

About this task

Here are the steps to follow when using a ResultSet object:

  1. Create the ResultSet object.
  2. Run the query to fill the ResultSet with data.
  3. Navigate (move) through the resulting data until you find the record you want.
  4. Retrieve the values from the fields of the record.

Feedback