rss
twitter
  • Showcase
  • Carrières
  • Support
  • GitLab
  • Espace client
  • Contact

Changer le charset de tous les champs d’un coup

0

Mise à jour du 30 août 2010

Un script qui fait tout d’un coup :

<?php
$host = 'localhost';
$base = '';
$user = '';
$pass = 'mylk2ad7';
$con = mysql_connect($host, $user, $pass);
mysql_select_db($base, $con);
$req = "SHOW TABLES";
$res = mysql_query($req);
$varname="Tables_in_".$base;
while ($row = mysql_fetch_object($res)) {
    // afficher le nom du champ
    echo '<br>'.$row->$varname;
    // changer le charset de la table
    $req2 = 'ALTER TABLE  `'.$row->$varname.'` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci';
    mysql_query($req2);
    // changer le charset des champs
    $req3 = 'ALTER TABLE `'.$row->$varname.'` CONVERT TO CHARACTER SET UTF8';
    mysql_query($req3);
}
?>

La putain de commande magique que vous avez cherché pendant des années, la voilà :

ALTER TABLE v2_mannequins CONVERT TO CHARACTER SET UTF8

Ne pas oublier aussi de le faire pour la base :

ALTER DATABASE smith_v2 CHARACTER SET UTF8

Et bien sûr pour les tables car, bordel, c’est très hiérarchisé MySQL :

ALTER TABLE v2_mannequins CHARACTER SET UTF8

Comment ça je suis énervé ?!

Voir en ligne : Source

DATE 30 Août 2010
by : Germain
Author / Auteur

Social Share / Partager

    Leave a Reply / Répondre Annuler la réponse

    *
    *

    More in Back-end : SQL, MySQL

    • Afficher les logs MySQL
    • Changer l'interclassement de plusieurs tables MySQL à la fois (ou presque
    • Connexion distante à PostgreSQL 9.3 via tunnel SSH
    • Synchroniser 2 serveurs MySQL rapidement
    • Sauvegardes MySQL et rotations avec AutoMySQLBackup

    Search the blog

    Blog categories

    • Workflow (1)
    • Front-end : HTML, CSS (13)
    • Front-end : javascript, jQuery (33)
    • Back-end : PHP, CMS (42)
    • Back-end : SQL, MySQL (20)
    • Sysadmin : Linux, Apache, GIT (75)
    • Designers : tools, advice (2)
    • Desktop : OS X (37)
    • Desktop : Microsoft (12)
    • Uncategorized (8)

    ITALIC™ Resources

    • Paramètres de connexion au serveur mail
    • Graphistes : séduire un développeur web
    • Dév front : nos bonnes pratiques
    • Mailing : nos (bonnes ?) pratiques
    • Environnement de travail Mac

    Recent posts

    • Autoriser le chargement de contenus mixtes non-https dans Chrome (Mac)
    • Afficher les logs MySQL
    • Recevoir un mail lors de la connexion root à un serveur
    • Changer l’interclassement de plusieurs tables MySQL à la fois (ou presque
    • Maildev : tester l’envoi de mails durant ses développements
    © 2008-2017 ITALIC™ • 8 bis rue Abel • 75012 PARIS • Tel +33 (0)1 48 44 46 35 • RCS PARIS 508 228 772 • Powered by WordPress & GoodLayers
    Nous utilisons des cookies pour vous garantir la meilleure expérience sur notre site web.
    Cookie settingsACCEPTER
    Manage consent

    Privacy Overview

    This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
    Necessary
    Toujours activé
    Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
    Non-necessary
    Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
    Enregistrer & appliquer