sqlquerythread Query property
Return to Introduction  Previous page  Next page
Applies to
acSQLQueryThread component.  

Declaration
property Query: TDataSet;  

Description
The Query property specifies the DataSet which you would like to Open in separate thread. You can specify ANY descendant of TDataSet class, for example standard TQuery component, or TmySQLQuery by MicroOLAP.  
 
After calling RunSQL method, the component opens a dataset in serparate thread (calls Open method of Query), and returns results in OnDone method, if succeed.  

See also
Query, Priority and WaitThread properties;  
OnDone and OnException events;  
Abort method.