public function DatabaseConnection::utf8mb4IsActive

Checks whether utf8mb4 support is currently active.

Return value

bool

3 methods override DatabaseConnection::utf8mb4IsActive()
DatabaseConnection_mysql::utf8mb4IsActive in drupal/includes/database/mysql/database.inc
Checks whether utf8mb4 support is currently active.
DatabaseConnection_pgsql::utf8mb4IsActive in drupal/includes/database/pgsql/database.inc
Checks whether utf8mb4 support is currently active.
DatabaseConnection_sqlite::utf8mb4IsActive in drupal/includes/database/sqlite/database.inc
Checks whether utf8mb4 support is currently active.

File

drupal/includes/database/database.inc, line 1356
Core systems for the database layer.

Class

DatabaseConnection
Base Database API class.

Code

public function utf8mb4IsActive() {

  // Since 4 byte UTF-8 is not supported by default, there is nothing to
  // activate.
  return FALSE;
}