A reference to the query’s or stored procedure’s rowset, or a data module’s primary rowset.

Property of

DataModule, Query, StoredProc

Description

A Query object always contains a rowset property, but that property does not refer to a valid Rowset object until the query has been activated and the rowset has been opened.

Some stored procedures generate rowsets. If that is the case, the StoredProc object’s rowset property refers to that rowset after the stored procedure is executed.

A data module may designate a primary rowset. This rowset is assigned to a form’s rowset property by the Form designer when the data module is used in the form.

The rowset property is read-only for Query and StoredProc objects.

For more information, see class Rowset.