getConcurrency()
Syntax:
int getConcurrency()
                   throws SQLException
                                        Description:
Retrieves the concurrency mode of this ResultSet object. The concurrency used is determined by the Statement object that created the result set.
Returns:
tthe concurrency type - either ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE.  Since RaimaDB does not support updatable cursors, this method will always return ResultSet.CONCUR_READ_ONLY
Throws:
SQLException - if a database access error occurs or this method is called on a closed result set
Reference:
For more information, reference JDBC documentation for: ResultSet.getConcurrency()