Share via


QueryBuildDataSource.firstFast Method

Definition

Overloads

firstFast(Boolean)
firstFast()

Determines whether to retrieve the first record from the query before the other records.

firstFast(Boolean)

public:
 virtual bool firstFast(bool _value);
public virtual bool firstFast (bool _value);
abstract member firstFast : bool -> bool
override this.firstFast : bool -> bool
Public Overridable Function firstFast (_value As Boolean) As Boolean

Parameters

_value
Boolean

Returns

Applies to

firstFast()

Determines whether to retrieve the first record from the query before the other records.

public:
 virtual bool firstFast();
public virtual bool firstFast ();
abstract member firstFast : unit -> bool
override this.firstFast : unit -> bool
Public Overridable Function firstFast () As Boolean

Returns

true if the first record is retrieved first; otherwise, false.

Remarks

The firstFast property enables some database systems to optimize record retrieval, which improves performance. If the database does not support this property, it is ignored.

Applies to