简体   繁体   中英

query limit issue with php and mysql (drupal 6)

hi i was trying to do a query in drupal which selects every row in table, i was having an issue with the no of rows i was able to query for the query is working for 300row limit but if i increase it 400 it is going blank page.

$total_terms = 300;
$query = "SELECT N.nid ,N.tid FROM term_node N  ";
$query_result = db_query_range($query, $vid, 0, $total_terms);

You are probably timing out , or exceeding your memory limit . Check the Apache and PHP logs.

You might want to try the Batch API

It might be helpful to use the drupal_tweaks module; it allows you to set php execution time limit, as well as mysql default_wait limit.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM