API15

API15:JDatabase/PageExecute

From Joomla! Documentation

Description

ADODB compatability function

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

PageExecute($sql, $nrows, $page, $inputarr=false, $secs2cache=0)
Parameter Name Default Value Description
$sql
$nrows
$page
$inputarr false
$secs2cache 0

Defined in

libraries/joomla/database/database.php

Importing

jimport( 'joomla.database.database' );

Source Body

function PageExecute( $sql, $nrows, $page, $inputarr=false, $secs2cache=0 )
{
        jimport( 'joomla.database.recordset' );

        $this->setQuery( $sql, $page*$nrows, $nrows );
        $result = $this->loadRowList();
        return new JRecordSet( $result );
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples