ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:connection:cachegetassoc

cacheGetAssoc

syntax
 mixed cacheGetAssoc (
       mixed $cacheSeconds
       optional string $sql=falsse
       optional string[] $bindvars=false
       optional bool $forceArray=false
       optional bool $first2Cols=false
       )

Description

Cache functions search for the results of an executed query in the query cache. The results of a query have an expiration time specified by the first parameter. If an unexpired cache result is not found, the query is cached for the specified period.

For an explanation of the syntax of the other parameter of cacheGetAssoc(), see getAssoc().


Usage

/*
 * DB2 Connection assumed
*/
$ar = $db->cacheGetAssoc(600,"SELECT ACTNO,ACTDESC FROM ACT");
 
/*
 * $ar returns:
Array
(
    [10] => MANAGE/ADVISE
    [20] => ESTIMATE COST
    [30] => DEFINE SPECS
    [40] => LEAD PROGRAM/DESIGN
 ......
)
*/
 
v5/reference/connection/cachegetassoc.txt · Last modified: 2016/01/17 01:36 by mnewnham