getResultSetType()
Syntax:
int getResultSetType()
                      throws SQLException
                                        Description:
Retrieves the result set type for ResultSet objects generated by this Statement object.
Returns:
one of ResultSet.TYPE_FORWARD_ONLY, ResultSet.TYPE_SCROLL_INSENSITIVE, or ResultSet.TYPE_SCROLL_SENSITIVE
RaimaDB currently only supports forward-only cursors, so this method always returns ResultSet.TYPE_FORWARD_ONLY.
Throws:
SQLException - if a database access error occurs or the statement has been closed
Reference:
For more information, reference JDBC documentation for: Statement.getResultSetType()