
Upgrade Your Drupal Skills
We trained 1,000+ Drupal Developers over the last decade.
See Advanced Courses NAH, I know Enoughdb_query in drupal .... creating sql queries the drupal way (Drupal 6)
good drupal.org documentation is here: http://drupal.org/node/101496 getting a single value: use db_result
This sites Drupal 7 wiki page for creating Drupal 7 queries is here: http://www.barnettech.com/content/dbquery-drupal-7
$result=db_result(db_query('Select uid from {users} where uid = %d',5));
getting multiple rows: use db_query
$result = db_query('SELECT a, b, c FROM d WHERE x > 300');
while ($row = db_fetch_array($result)) {
$output .= 'a = ' . $row['a'] . ', b = ' . $row['b'] . ' , and c = ' . $row['c'] . '
';
}
getting a limited range of results: use db_query_range start and stop values of 0 and 10 below for the range:
$result = db_query_range(db_rewrite_sql($sql), $type, $status, 0, 10);
See Pro Drupal Development Book (for Drupal 6) page 94 for detailed examples.
db_query(' SELECT * FROM {table_name} WHERE vid = %d' , $node- >vid);
%s String %d Integer %f Float %b Binary data; do not enclose in ' ' %% Inserts a literal % sign (e.g., SELECT * FROM {users} WHERE name LIKE ' %%%s%%' ) And if the values are in an array that you are retrieving. You'll receive just this useless message if you don't use db_fetch array: Resource id #82 where 82 will change depending on the query.
$check_event_id = db_fetch_array(db_query('SELECT field_id_value from {content_type_event_calendar} where field_id_value = %d', $event->id));
print 'check_event_id is '.$check_event_id['field_id_value'];
About Drupal Sun
Drupal Sun is an Evolving Web project. It allows you to:
- Do full-text search on all the articles in Drupal Planet (thanks to Apache Solr)
- Facet based on tags, author, or feed
- Flip through articles quickly (with j/k or arrow keys) to find what you're interested in
- View the entire article text inline, or in the context of the site where it was created
See the blog post at Evolving Web