搭建ruby mysql环境
1. 安装ruby2.2.1
2. 安装mysql插件1gem install mysql
3. 数据库编码修改12345678require 'mysql'begin db = Mysql.init db.options(Mysql::SET_CHARSET_NAME, 'utf8') db = Mysql.real_connect(#{host}, #{username}, #{passwd}, #{dbname},3306)db.query("SET NAMES utf8") db.query("drop table if exists test_rb")db.query("create table test_rb (id int,text [...]end
4.ruby文件的编码:
加入1# encoding: utf-8
通过下面的语句可以查看编码:1puts __ENCODING__