JDBC Tutorial

ResultSet

  1. n object of ResultSet allows us to retrieve the data by default only in forward direction but not in backward direction and random retrieval.
  2. Whenever we get the database data in ResultSet object which will be temporarily disconnected from the database.
  3. ResultSet object does not allows us to perform any modifications on ResultSet object.
  4. Hence, the ResultSet is by default non-scrollable disconnected ResultSet.