Drupal 7:检查数据库条目是否存在的最快方法

时间:2012-06-23 19:55:58

标签: drupal-7

如果存在数据库条目,我怎么能最快速地检查?我使用这段代码:

$exists = db_query('SELECT tid FROM {taxonomy_index} WHERE tid = 1 AND nid = 1 LIMIT 1');
        if($exists->rowCount() > 0){
          drupal_set_message("exists");
         }

2 个答案:

答案 0 :(得分:8)

我愿意:

$result = db_select('taxonomy_index', 'ti')
  ->fields('ti', array('tid'))
  ->condition('tid', 1)
  ->condition('nid', 1)
  ->range(0, 1)
  ->execute()
  ->rowCount();

if ($result) {
  drupal_set_message(t('Exists'));
}

与您的问题无关,但您应始终使用占位符来防止SQL注入 - 尽管如果您使用上面的查询构建器,那么它会为您处理。此外,在将文本写入屏幕时,应始终使用t()函数。

答案 1 :(得分:6)

db_select()比db_query()慢。有关db_select()比db_query()更适合的情况,请参阅this thread

db_query() - > fetchField()是最简单的方法。请参阅以下代码段:

<?php

// Returns string(5) "admin"
var_dump(db_query('select name from {users} where uid = 1')->fetchField());

// Returns bool(false)
var_dump(db_query('select name from {users} where uid = -1')->fetchField());

</pre>