|
|
a Java object that contains the results of executing an SQL query
an interface that represents zero or more rows matching a database query
a row of data returned by a database query
A set of records created by a search query
An object that implements the java.sql.ResultSet interface. ResultSets are used to encapsulate a set of row s retrieved from a database or other source of tabular data.
This is an object representing a set of data. It can either be an entire table, or the results of a query. The actual data is not held in the ResultSet, it is only a description of how to fetch the data. § See also: "METHODS" in DBIx::Class::ResultSet
|