protected Tasks::checkEncoding()
Check encoding is UTF8.
File
- core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php, line 114
Class
- Tasks
- Specifies installation tasks for PostgreSQL databases.
Namespace
Drupal\Core\Database\Driver\pgsql\Install
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | protected function checkEncoding() { try { if (db_query( 'SHOW server_encoding' )->fetchField() == 'UTF8' ) { $this ->pass(t( 'Database is encoded in UTF-8' )); } else { $this ->fail(t( 'The %driver database must use %encoding encoding to work with Drupal. Recreate the database with %encoding encoding. See <a href="INSTALL.pgsql.txt">INSTALL.pgsql.txt</a> for more details.' , array ( '%encoding' => 'UTF8' , '%driver' => $this ->name(), ))); } } catch (\Exception $e ) { $this ->fail(t( 'Drupal could not determine the encoding of the database was set to UTF-8' )); } } |
Please login to continue.