Does this dialect support asking the result set its positioning information on forward only cursors. Specifically, in the case of scrolling fetches, Hibernate needs to use {@link java.sql.ResultSet#isAfterLast} and {@link java.sql.ResultSet#isBeforeFirst}. Certain drivers do not allow access to these methods for forward only cursors.

NOTE : this is highly driver dependent!

Namespace: NHibernate.Dialect
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public virtual bool SupportsResultSetPositionQueryMethodsOnForwardOnlyCursor { get; }
Visual Basic
Public Overridable ReadOnly Property SupportsResultSetPositionQueryMethodsOnForwardOnlyCursor As Boolean
	Get
Visual C++
public:
virtual property bool SupportsResultSetPositionQueryMethodsOnForwardOnlyCursor {
	bool get ();
}

Return Value

True if methods like {@link java.sql.ResultSet#isAfterLast} and {@link java.sql.ResultSet#isBeforeFirst} are supported for forward only cursors; false otherwise.

See Also