Description should include the following:

createStatement(int RSType, int RSConcurrency);
prepareStatement(String SQL, int RSType, int RSConcurrency);
prepareCall(String sql, int RSType, int RSConcurrency);

The first argument above indicates the type of ResultSet object, and the second argument is one of two ResultSet constants for specifying whether a result set is read-only or updatable.

 Type

 Description

 ResultSet.TYPE_FORWARD_ONLY

 The cursor can only move forward in the result set.

 ResultSet.TYPE_SCROLL_INSENSITIVE 

The cursor can scroll forward and backward, and the result set is not sensitive to changes made by others to the database that occur after the result set was created.

 ResultSet.TYPE_SCROLL_SENSITIVE

The cursor can scroll forward and backward, and the result set is sensitive to changes made by others to the database that occur after the result set was created. 

 
If the ResultSet type is not specified, TYPE_FORWARD_ONLY will be automatically provided.