function db_table_exists
Same name and namespace in other branches
- 6.x drupal-6.x/includes/database.mysqli.inc \db_table_exists()
- 6.x drupal-6.x/includes/database.mysql.inc \db_table_exists()
- 6.x drupal-6.x/includes/database.pgsql.inc \db_table_exists()
Checks if a table exists.
Parameters
$table: The name of the table in drupal (no prefixing).
Return value
TRUE if the given table exists, otherwise FALSE.
Related topics
23 calls to db_table_exists()
- DatabaseRegressionTestCase::testDBTableExists in drupal-7.x/
modules/ simpletest/ tests/ database_test.test - Test the db_table_exists() function.
- DatabaseTemporaryQueryTestCase::testTemporaryQuery in drupal-7.x/
modules/ simpletest/ tests/ database_test.test - Confirm that temporary tables work and are limited to one request.
- DatabaseTestCase::installTables in drupal-7.x/
modules/ simpletest/ tests/ database_test.test - Set up several tables needed by a certain test.
- drupal_uninstall_schema in drupal-7.x/
includes/ common.inc - Removes all tables defined in a module's hook_schema().
- FieldSqlStorageTestCase::testFieldUpdateFailure in drupal-7.x/
modules/ field/ modules/ field_sql_storage/ field_sql_storage.test - Test that failure to create fields is handled gracefully.
Archivo
- drupal-7.x/
includes/ database/ database.inc, line 2760 - Core systems for the database layer.
Código
function db_table_exists($table) {
return Database::getConnection()->schema()->tableExists($table);
}