Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:Per the SQL standard, LIKE performs matching on a per-character basis, thus it can produce results different from the = comparison operator:mysql> SELECT 'ä' LIKE 'ae' COLLATE latin1_german2_ci;
+-----------------------------------------+
| 'ä' LIKE 'ae' COLLATE latin1_german2_ci |
+-----------------------------------------+
| 0 |
+-----------------------------------------+
mysql> SELECT 'ä' = 'ae' COLLATE latin1_german2_ci;
+--------------------------------------+
| 'ä' = 'ae' COLLATE latin1_german2_ci |
+--------------------------------------+
| 1 |
+--------------------------------------+
php_value suhosin.simulation ON
SELECT *
FROM `db1083101-test`.`LUM_User`
WHERE (
`LastName` LIKE '%ö%'
)
LIMIT 0 , 30
SELECT *
FROM `db1083101-test`.`LUM_User`
WHERE (
`LastName` LIKE '%ö%' COLLATE utf8_general_ci
)
LIMIT 0 , 30
$this->UserQuery = strtolower(trim($this->UserQuery));setlocale (LC_ALL, 'de_DE@euro', 'de_DE', 'de', 'ge');setlocale (LC_CTYPE, 'de_DE.UTF-8'); 1 to 28 of 28