ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:connection:getall

getAll

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

syntax
 mixed getAll {
       mixed $sql
       optional string[] $bindvars
       }

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().

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
 
.......
*/
 
v5/reference/connection/getall.txt · Last modified: 2019/05/08 16:41 by dregad