getFetchDirection()

Syntax:

int getFetchDirection()
                      throws SQLException

Description:

Retrieves the direction for fetching rows from database tables that is the default for result sets generated from this Statement object.

Returns:

the default fetch direction for result sets generated from this Statement object

Raima Database Manager currently only supports forward only cursors, so this method will always return ResultSet.FETCH_FORWARD.

Throws:

SQLException - if a database access error occurs or the statement has been closed

Reference:

For more information, reference JDBC documentation for: Statement.getFetchDirection()