Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

Drupal 7 uses PDO so the short answer is you don't use the deprecated mysql_ family of functions anywhere. If you are using those functions, you're doing something wrong.

An equivalent of your code using the Drupal API:

$result = db_query("SELECT * FROM test")->fetchAllAssoc('p_key');

print_r($result[0]);
print_r($result[0]);

See this post for a list of the other helper methods you can use.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.