db_table_exists

  1. drupal
    1. 5
    2. 5 database.mysqli.inc
    3. 5 database.pgsql.inc
    4. 6 database.mysql.inc
    5. 6 database.mysqli.inc
    6. 6 database.pgsql.inc
    7. 7 database.inc
Versions
5 – 7 db_table_exists($table)

Check if a table exists.

Related topics

Code

includes/database.mysql.inc, line 422

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