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