getFetchDirection()
Syntax:
int getFetchDirection() throws SQLException
Description:
Retrieves the fetch direction for this ResultSet
object.
Returns:
the fetch direction - one of ResultSet.FETCH_FORWARD
, ResultSet.FETCH_REVERSE
, or ResultSet.FETCH_UNKNOWN
. Since RaimaDB currently only supports forward-only cursors, this method will always return ResultSet.FETCH_FORWARD
.
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.getFetchDirection()