db_table_exists

Definition

db_table_exists($table)
drupal/includes/database.mysqli.inc, line 404

Description

Check if a table exists.

Related topics

Namesort iconDescription
Database abstraction layerAllow the use of different database servers using the same code base.

Code

function db_table_exists($table) {
  return db_num_rows(db_query("SHOW TABLES LIKE '{" . db_escape_table($table) . "}'"));
}