getAll

This function and getArray() produce the same output. The functions may be merged in future releases.

syntax
 array|null getAll {
       mixed $sql
       optional string[] $bindvars=null
       optional string[] $cacheOptions=null
       } 

Description

The function executes a statement and returns a the entire recordset in an array or false if the statement execution fails. If no records match the provided SQL statement, an empty array is returned.

The presentation of the returned data can be modified by:

For a detailed description of the parameters passed, see execute(). The function allow supports use of the Memcache service using the cache data array.

Usage

/*
 * DB2 Connection assumed
*/
$ar = $db->getAll("SELECT * FROM ACT");
 
/*
 * $ar returns:
Array
(
    [0] => Array
        (
            [0] => 10
            [1] => MANAGE
            [2] => MANAGE/ADVISE
        )
 
    [1] => Array
        (
            [0] => 20
            [1] => ECOST
            [2] => ESTIMATE COST
        )
 
    [2] => Array
        (
            [0] => 30
            [1] => DEFINE
            [2] => DEFINE SPECS
 
.......
*/