->escape() | ->orderBy() |
DB_DataObject | |
PEAR Manual | |
void $DB_DataObject->limit (
int $from
,
int $number
)
Sets the limit for a query. (this only works on databases that support the LIMIT clause), without parameters, it will clear the current limit.
int $from - limit start (or number), or blank to reset
int $number - limit results to number
This function can not be called statically.
Since postgres and mysql only really support limit directly - calling this on an unsupported database will emit a PEAR::Error and die.
Setting the Limit
|
Resulting SQL
SELECT * FROM person LIMIT 2 SELECT * FROM person LIMIT 2,4 |
->escape() | ->orderBy() |
DB_DataObject | |
PEAR Manual | |