ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:reference:connection:cachegetrow

cacheGetRow

syntax
 mixed cacheGetRow (
       mixed $cacheSeconds,
       optional mixed $sql=false,
       optional string[] $bindvars=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 cacheGetRow(), see getRow().

Usage

/*
 * DB2 Connection assumed
*/
$ar = $db->cacheGetRow(600,"SELECT * FROM ACT");
 
/*
 * $ar returns:
Array
(
    [0] => 10
    [1] => MANAGE
    [2] => MANAGE/ADVISE
)
 
*/
 
v5/reference/connection/cachegetrow.txt · Last modified: 2016/01/17 03:02 by mnewnham