|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2018-09-24 17:48 UTC] cmb@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: cmb
[2018-09-24 17:48 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 14:00:02 2025 UTC |
Description: ------------ Hello, I need load more collations for use into sqlite pdo driver and use this method: SELECT icu_load_collation('de_DE', 'de_DE') (for example) and see this error: SELECT icu_load_collation('de_DE', 'de_DE') Code: HY000, SQLSTATE[HY000]: General error: 1 no such function: icu_load_collation, in.... Test script: --------------- <?php $pdo = new \PDO( ':memory:' ) ; $pdo->query( 'SELECT icu_load_collation('de_DE', 'de_DE')' ); ?> Expected result: ---------------- suppoted ICU from SQLITE too. Actual result: -------------- Code: HY000, SQLSTATE[HY000]: General error: 1 no such function: icu_load_collation, in....