db_table_exists($table)
drupal/includes/database/database.inc, line 2524
Checks if a table exists.
$table The name of the table in drupal (no prefixing).
TRUE if the given table exists, otherwise FALSE.
| Name | Description |
|---|---|
| Database abstraction layer | Allow the use of different database servers using the same code base. |
| Schema API | A Drupal schema definition is an array structure representing one or more tables and their related keys and indexes. A schema is defined by hook_schema(), which usually lives in a modulename.install file. |
function db_table_exists($table) {
return Database::getConnection()->schema()->tableExists($table);
}