sql >> Database >  >> RDS >> Mysql

Hoe stel je een collatie in met 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. Hoe gebruik je de WITH-clausule in MySQL?

  2. MySQL:geüpdatete rijen retourneren

  3. Belang van varchar-lengte in MySQL-tabel

  4. MySql-tabel invoegen indien niet aanwezig, anders bijwerken