sql >> Database teknologi >  >> RDS >> Mysql

Hvordan indstiller man en kollation med mysqli?

mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli=mysqli_connect('mysql01','username','password', 'my_database');
$mysqli->set_charset('utf8mb4');
// setting collation is optional and not needed 99% of time
// only if you need a specific one, like in this case
$mysqli->query("SET collation_connection = utf8mb4_czech_ci");


  1. Sådan indstilles max_connections i MySQL Programmatisk

  2. Forbindelsesstrengparametre for gemte specifikationer

  3. Autofuldførelse i MySQL-kommandolinjeklienten

  4. Hvordan kan jeg indstille et tilpasset dato-tidsformat i Oracle SQL Developer?