DAC for MySQL

TDataSet.Properties.AvailableResultsetCount

Previous Next
Since v2.5.3

Indicates count of resultsets available to fetch from multiresultset query or stored procedure. This property is useful when query or stored procedure returns more than one dataset.

Syntax:

property AvailableResultsetCount : integer

Description:

Inspect AvailableResultsetCount property to check number of available resultsets returned from multiresultset query or stored procedure. This property is 0 for closed dataset and it is always 1 for opened TmySQLTable components. You can use MultiResultsetNo property to fetch other resultset than first for TmySQLQuery and TmySQLStoredProc components.

See also:MultiResultsetNo property