I am changing MySQL to PDO in a pagination functionality, there is a function that get me the result of select query and then I am using
$result=$DB->Select($query);
$result->fetch(PDO::FETCH_OBJ, PDO::FETCH_ORI_ABS,$_POST['from']);}
for retrieving data from a certain position, but it always gives all records.
In MySQL I was using mysql_data_seek
to use this.