diff --git a/examples/1.2-basic-select.php b/examples/1.2-basic-select.php index 8e7f5217b..0ce4f0326 100644 --- a/examples/1.2-basic-select.php +++ b/examples/1.2-basic-select.php @@ -9,15 +9,6 @@ // get a select query instance $query = $client->createQuery($client::QUERY_SELECT); -// Pagination example -$resulsPerPage = 15; -$currentPage = 1; - -// Set the number of results to return -$query->setRows($resultsPerPage); -// Set the 0-based result to start from, taking into account pagination -$query->setStart(($currentPage - 1) * $resultsPerPage); - // this executes the query and returns the result $resultset = $client->execute($query);