首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

Drupal 七 db_query error

2013-10-12 
Drupal 7 db_query errorPlease have a try and you will never see the error$rows array()/*while($r

Drupal 7 db_query error

Please have a try and you will never see the error

$rows = array();/*while($row = db_fetch_object($result)) {$rows[] = $row;}*/foreach ($result as $row) {       $rows[] = $row;return $rows;

Please also try to change those:

$result = db_query("select * from {files} where fid = %d", $val['_fid']);while ($data = db_fetch_object($result)) {      $thefile = $data;}

to

$query = db_select('files', 'f')  ->fields('f')  ->condition('fid', $val['_fid']);$thefile = $query->execute()->fetchObject();

?

热点排行