| Versionen | |
|---|---|
| drupal7 | public DatabaseSchema_sqlite::tableExists($table) |
includes/
<?php
public function tableExists($table) {
// Don't use {} around sqlite_master table.
return (bool) $this->connection->query("SELECT name FROM sqlite_master WHERE type = 'table' AND name LIKE '{" . $table . "}'", array(), array())->fetchField();
}
?>
Kommentare
Kommentar hinzufügen