public function Schema::fieldExists

Same name in this branch
  1. 8.x drupal/core/lib/Drupal/Core/Database/Schema.php \Drupal\Core\Database\Schema::fieldExists()
  2. 8.x drupal/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php \Drupal\Core\Database\Driver\mysql\Schema::fieldExists()
  3. 8.x drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php \Drupal\Core\Database\Driver\sqlite\Schema::fieldExists()

Check if a column exists in the given table.

Parameters

$table: The name of the table in drupal (no prefixing).

$name: The name of the column.

Return value

TRUE if the given column exists, otherwise FALSE.

5 calls to Schema::fieldExists()
Schema::addField in drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
Add a new field to a table.
Schema::changeField in drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
Change a field definition.
Schema::dropField in drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
Drop a field.
Schema::fieldSetDefault in drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
Set the default value for a field.
Schema::fieldSetNoDefault in drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
Set a field to have no default value.
2 methods override Schema::fieldExists()
Schema::fieldExists in drupal/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
Check if a column exists in the given table.
Schema::fieldExists in drupal/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
Check if a column exists in the given table.

File

drupal/core/lib/Drupal/Core/Database/Schema.php, line 359
Definition of Drupal\Core\Database\Schema

Class

Schema

Namespace

Drupal\Core\Database

Code

public function fieldExists($table, $column) {
  $condition = $this
    ->buildTableNameCondition($table);
  $condition
    ->condition('column_name', $column);
  $condition
    ->compile($this->connection, $this);

  // Normally, we would heartily discourage the use of string
  // concatenation for conditionals like this however, we
  // couldn't use db_select() here because it would prefix
  // information_schema.tables and the query would fail.
  // Don't use {} around information_schema.columns table.
  return (bool) $this->connection
    ->query("SELECT 1 FROM information_schema.columns WHERE " . (string) $condition, $condition
    ->arguments())
    ->fetchField();
}