Using utf8 encoding in Ruby with MySQL 5.1 and 5.5
remember to require mysql gem first
require "rubygems"
require 'mysql'
with MySQL 5.1 db = Mysql.init db.options(Mysql::SET_CHARSET_NAME,“utf8”) db.real_connect(“localhost”, “username”, “password”, “database”)
with MySQL 5.5 db = Mysql.real_connect(“localhost”, “username”, “password”, “database”) db.charset = “utf8”
check the result: puts db.character_set_name
If you got utf8, Congratulations!
喜歡這篇文章嗎?你可能也會喜歡我的學習電子報,我會分享經過篩選的優質內容 + 學習心得
📚 訂閱我的學習電子報
📖 涵蓋主題:
🧑💻 軟體工程
🎯 生產力
💰 商業理財
🧳 創業
🐱 奇怪的知識增加了
💭 思考人生心得
🎁 現在訂閱就送我個人非常愛用「學習任何領域皮毛的 AI Prompt」!
立即免費訂閱 →
✨ 不浪費你的時間,只分享達到我標準的優質內容