public function DatabaseConnection_sqlite::utf8mb4IsSupported in Drupal 7
Checks whether utf8mb4 support is available on the current database system.
Return value
bool
Overrides DatabaseConnection::utf8mb4IsSupported
File
- includes/
database/ sqlite/ database.inc, line 409 - Database interface code for SQLite embedded database engine.
Class
- DatabaseConnection_sqlite
- Specific SQLite implementation of DatabaseConnection.
Code
public function utf8mb4IsSupported() {
return TRUE;
}