getResultSetConcurrency
Syntax:
int getResultSetConcurrency()
                            throws SQLException
                                        Description:
Retrieves the result set concurrency for ResultSet objects generated by this Statement object.
Returns:
either ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE
RaimaDB does not currently support updatable result sets, so this method always returns ResultSet.CONCUR_READ_ONLY.
Throws:
SQLException - if a database access error occurs or the statement has been closed
Reference:
For more information, reference JDBC documentation for: Statement.getResultSetConcurrency()