I need to read data twice from query result resource.I had tried with following query but it doesn't work.
$result = db_query("SELECT * FROM test");
echo '<pre>';
print_r($result->fetchAssoc());
mysql_data_seek($result, 0);
print_r($result->fetchAssoc());
Just I tried to iterate result once through $result->fetchAssoc() function again I want iterate record from first row so i used mysql_data_seek but it doesn't work
How do i use mysql_data_seek in drupal7?