วิธี Convert Database จาก utf8mb4 เป็น utf8

เมื่อ CMS ที่มีผู้ใช้จำนวนมาก อย่าง Wordpress และ CMS อื่นๆ ในปัจจุบันหันมาเลือกใช้งาน utf8mb4/utf8mb4_unicode_ci เป็นมาตรฐานแทน utf8/utf8_general_ci ทำให้บางครั้งเกิดปัญหาในการใช้งาน หรือปัญหาความเข้ากันได้กับ MySQL Server ที่รุ่นเก่ากว่า 5.5.3

แนวทางการแก้ไขสามารถทำได้โดยทำการ Convert Database ให้เป็น utf8/utf8_general_ci โดยใช้ Script ด้านล่างนี้ครับ

<!DOCTYPE html>
<html>
<head>
<title>DB-Convert</title>
<style>
body { font-family:"Courier New", Courier, monospace;" }
</style>
</head>
<body>
<h1>Convert your Database to utf8_general_ci!</h1>
<form action="db-convert.php" method="post">
dbname: <input type="text" name="dbname"><br>
dbuser: <input type="text" name="dbuser"><br>
dbpass: <input type="text" name="dbpassword"><br>
<input type="submit">
</form>
</body>
</html>
<?php
if ($_POST) {
$dbname = $_POST['dbname'];
$dbuser = $_POST['dbuser'];
$dbpassword = $_POST['dbpassword'];
$con = mysql_connect('localhost',$dbuser,$dbpassword);
if(!$con) { echo "Cannot connect to the database ";die();}
mysql_select_db($dbname);
$result=mysql_query('show tables');
while($tables = mysql_fetch_array($result)) {
foreach ($tables as $key => $value) {
mysql_query("ALTER TABLE $value CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci");
}}
echo "<script>alert('The collation of your database has been successfully changed!');</script>";
}
?>



การใช้งาน Script ต้องแทนค่า Database User / Password และ Database Name ก่อนนะครับ

  • 2 Users Found This Useful
คำตอบนี้เป็นประโยชน์แก่ท่านหรือไม่?

Related Articles

ติดตั้ง MongoDB ให้กับ CentOS 7

MongoDB เป็น Database ชนิด NoSQL ที่มีประสิทธิภาพในการ อ่านและเขียนข้อมูลได้เร็ว และรองรับการทำ...

วิธีค้นหาและแทนค่าข้อมูลจำนวนมากในตารางฐานข้อมูล

บ่อยครั้งผมพบว่าเราจำเป็นต้อง Search และ Replace ข้อความ หรือ String จำนวนมากใน Database...

วิธีติดตั้ง MongoDB ให้กับ CentOS 6

MongoDB เป็น Database ชนิด NoSQL ที่มีประสิทธิภาพในการ อ่านและเขียนข้อมูลได้เร็ว และรองรับการทำ...

Powered by WHMCompleteSolution