====== getAll ====== ~~NOTOC~~ This function and [[v6:reference:connection:getarray|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: * [[v6:reference:adodb_fetch_mode|fetchMode]] class variable, * [[v6:reference:adodb_assoc_case|assocCase]] class variable, * [[v6:reference:connection:setfetchmode|setFetchMode()]] function. For a detailed description of the parameters passed, see [[v6:reference:connection:execute|execute()]]. The function allow supports use of the [[v6:memcache|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 ....... */