Web.DBXpressWeb.TSQLQueryTableProducer.Query

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Query: TSQLQuery read FQuery write SetQuery;

C++

__property Data::Sqlexpr::TSQLQuery* Query = {read=FQuery, write=SetQuery};

Properties

Type Visibility Source Unit Parent
property published
Web.DBXpressWeb.pas
Web.DBXpressWeb.hpp
Web.DBXpressWeb TSQLQueryTableProducer

Description

Specifies the TSQLQuery object that TSQLQueryTableProducer runs to obtain its data.

Set Query to specify the query to run to obtain the data for the HTML table. Use Query to set the query for the TSQLQueryTableProducer rather than the DataSource property: TSQLQueryTableProducer generates its data source internally.

The individual field bindings specified by the THTMLTableColumn objects in the Columns property refer to fields in DataSet.

Note: Query is identical to the DataSet property, except Query does not use the TDataSet base class of the query object.

See Also