This class implements a wrapper for a DB result set
A new instance of this class will be returned by the DB implementation after processing a query that returns data.
Located in /DB.php (line 916)
Should results be freed automatically when there are no more rows?
A reference to the DB_<driver> object
The current default fetch mode
The name of the class into which results should be fetched when DB_FETCHMODE_OBJECT is in effect
The number of rows to fetch from a limit query
The row to start fetching from in limit queries
The execute parameters that created this result
The query string that created this result
Copied here incase it changes in $dbh, which is referenced
The query result resource id created by PHP
The present row being dealt with
The prepared statement resource id created by PHP in $dbh
This resource is only available when the result set was created using a driver's native execute() method, not PEAR DB's emulated one.
Copied here incase it changes in $dbh, which is referenced
}
This constructor sets the object's properties
Fetch a row of data into an array which is passed by reference
The type of array returned can be controlled either by setting this method's $fetchmode parameter or by changing the default fetch mode setFetchMode() before calling this method.
There are two options for standardizing the information returned from databases, ensuring their values are consistent when changing DBMS's. These portability options can be turned on when creating a new DB object or by using setOption().
Fetch a row of data and return it by reference into an array
The type of array returned can be controlled either by setting this method's $fetchmode parameter or by changing the default fetch mode setFetchMode() before calling this method.
There are two options for standardizing the information returned from databases, ensuring their values are consistent when changing DBMS's. These portability options can be turned on when creating a new DB object or by using setOption().
Frees the resources allocated for this result set
Determine the query string that created this result
Tells which row number is currently being processed
Get the next result if a batch of queries was executed
Get the the number of columns in a result set
Get the number of rows in a result set
Set options for the DB_result object
Documentation generated on Wed, 28 Mar 2007 09:54:11 -0600 by phpDocumentor 1.3.1