IBX.IBCustomDataSet.TIBDataSet.Prepared

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Prepared : Boolean read GetPrepared;

C++

__property bool Prepared = {read=GetPrepared, nodefault};

Properties

Type Visibility Source Unit Parent
property public
IBX.IBCustomDataSet.pas
IBX.IBCustomDataSet.hpp
IBX.IBCustomDataSet TIBDataSet

Description

Determines whether or not a set of dataset queries is prepared for execution.

Examine Prepared to determine if a set of queries is already prepared for execution. If Prepared is true, the set of queries is prepared, and if Prepared is false, the set of queries is not prepared. While a set of queries need not be prepared before execution, execution performance is enhanced if the set of queries is prepared beforehand, particularly if it is a parameterized set of queries that is executed more than once using the same parameter values.