Gdn_SQLDriver::GetLimit PHP Method

GetLimit() public method

Adds a limit clause to the provided query for this database engine.
public GetLimit ( string $Query, integer $Limit, integer $Offset )
$Query string The SQL string to which the limit statement should be appended.
$Limit integer The number of records to limit the query to.
$Offset integer The number of records to offset the query from.
    public function GetLimit($Query, $Limit, $Offset)
    {
        trigger_error(ErrorMessage('The selected database engine does not perform the requested task.', $this->ClassName, 'GetLimit'), E_USER_ERROR);
    }