public function DatabaseSchema_sqlite::createTableSql

public DatabaseSchema_sqlite::createTableSql($name, $table)

Generate SQL to create a new table from a Drupal schema definition.

Parameters

$name: The name of the table to create.

$table: A Schema API table definition array.

Return value

An array of SQL statements to create the table.

File

includes/database/sqlite/schema.inc, line 43
Database schema code for SQLite databases.

Class

DatabaseSchema_sqlite

Code

public function createTableSql($name, $table) {
  $sql = array();
  $sql[] = "CREATE TABLE {" . $name . "} (\n" . $this->createColumsSql($name, $table) . "\n);\n";
  return array_merge($sql, $this->createIndexSql($name, $table));
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!database!sqlite!schema.inc/function/DatabaseSchema_sqlite::createTableSql/7.x