The ResultSet Class

From InterBase
Jump to: navigation, search

Go Up to InterClient Scrollability


The resultSetType property of the ResultSet class can now have a value of TYPE_SCROLL_INSENSITIVE Previously, the only allowable value for resultSetType was TYPE_FORWARD_ONLY. Currently, the only type not allowed is the TYPE_SCROLL_SENSITIVE.

The following methods now return a valid value when the resultSets that are of the new resultSetType.TYPE_SCROLL_INSENSITIVE:

public boolean isBeforeFirst()
public boolean isAfterLast()
public boolean isFirst()
public isLast()
public void beforeFirst()
public void afterLast()
public boolean first()
public boolean last()
public int getRow()
public boolean absolute(int row)
public boolean relative(int rows)
public boolean previous()