]> 91.132.146.200 Git - scientia.git/commitdiff
db collation
authorJohannes Keßler <johannes.kessler@bechtle.com>
Fri, 18 Nov 2022 12:15:50 +0000 (13:15 +0100)
committerJohannes Keßler <johannes.kessler@bechtle.com>
Fri, 18 Nov 2022 12:15:50 +0000 (13:15 +0100)
documentation/scientia.sql.txt
webroot/api.php
webroot/index.php

index 3c1ab7311a16d2e042bfb3bd384d36a49b54c3b1..7792dd09b3e36d47d5b111150a8402f5b5d00a66 100644 (file)
@@ -8,4 +8,4 @@ CREATE TABLE `sc_entry` (
   PRIMARY KEY (`ident`) USING BTREE,
   KEY `date` (`date`),
   FULLTEXT KEY `words` (`words`)
-) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin
index 419668fa91995a0c30a88a164b3a25c8ad336774..0594a270d4d7219052281e37a2a8d07e9ee89497 100644 (file)
@@ -96,7 +96,7 @@ $DB = false;
 $DB = new mysqli(DB_HOST, DB_USERNAME,DB_PASSWORD, DB_NAME);
 if ($DB->connect_errno) exit('Can not connect to MySQL Server');
 $DB->set_charset("utf8mb4");
-$DB->query("SET collation_connection = 'utf8mb4_unicode_ci'");
+$DB->query("SET collation_connection = 'utf8mb4_bin'");
 $driver = new mysqli_driver();
 $driver->report_mode = MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT;
 
index d29d9686b6f180e251d90465d3083c68488952cf..2409bf782f141c5a7527ba4efb2ed0f732881929 100644 (file)
@@ -60,7 +60,7 @@ $DB = false;
 $DB = new mysqli(DB_HOST, DB_USERNAME,DB_PASSWORD, DB_NAME);
 if ($DB->connect_errno) exit('Can not connect to MySQL Server');
 $DB->set_charset("utf8mb4");
-$DB->query("SET collation_connection = 'utf8mb4_unicode_ci'");
+$DB->query("SET collation_connection = 'utf8mb4_bin'");
 $driver = new mysqli_driver();
 $driver->report_mode = MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT;