ResultSet Object

You can use a ResultSet object to execute a query and browse the query results.

When you create queries using the QueryDef Object, you must create a corresponding ResultSet object to run the query and obtain the results. Each ResultSet object is customized for the query it is running. The ResultSet object contains data structures that organize data from the query into rows and columns, where each row represents a single data record and each column represents one field from that data record. After running the query, you can navigate (move) from row to row, and from column to column, to obtain the data you want.

Note that:

For an example of how to use the ResultSet object, see Running a query that has dynamic filters.


Feedback