Thread MySQL und utf8mb4 (27 answers)
Opened by rosti at 2023-06-14 18:04

GwenDragon
 2023-06-14 19:18
#195018 #195018
User since
2005-01-17
14601 Artikel
Admin1
[Homepage]
user image
Geht aber auch im Mysql-Client slebst nicht:[code]
MariaDB [testdb]> show tables;
+------------------+
| Tables_in_testdb |
+------------------+
| test |
+------------------+
1 row in set (0,000 sec)

MariaDB [testdb]> create table cc(
-> c varchar(1) charset utf8mb4
-> )default charset utf8mb4;
Query OK, 0 rows affected (0,014 sec)

MariaDB [testdb]> show tables;
+------------------+
| Tables_in_testdb |
+------------------+
| cc |
| test |
+------------------+
2 rows in set (0,001 sec)

MariaDB [testdb]> set names utf8mb4;
Query OK, 0 rows affected (0,001 sec)
MariaDB [testdb]> insert into cc(c)values("

View full thread MySQL und utf8mb4