1.

What we set the attribute Concurrency in ResultSet?

Answer»

The ResultSet concurrency determines whether the ResultSet can be updated, or only read. A ResultSet can have one of two concurrency levels

  • ResultSet.CONCUR_READ_ONLY − means that the ResultSet can only be read.

  • ResultSet.CONCUR_UPDATABLE − means that the ResultSet can be both read and updated.



Discussion

No Comment Found