JDatabase/PageExecute
From Joomla! Documentation
< API15:JDatabase
The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
ADODB compatability function
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax[edit]
PageExecute($sql, $nrows, $page, $inputarr=false, $secs2cache=0)
Parameter Name | Default Value | Description |
---|---|---|
$sql | ||
$nrows | ||
$page | ||
$inputarr | false | |
$secs2cache | 0 |
Defined in[edit]
libraries/joomla/database/database.php
Importing[edit]
jimport( 'joomla.database.database' );
Source Body[edit]
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[edit]
Code Examples[edit]