RubyでMySQLを使う
提供: sha.ngri.la
MySQLを使う
$ gem install mysql
id | name | |
---|---|---|
1 | 甲野太郎 | baa@***.com |
2 | ofo abaa | abaa@***.com |
3 | oof aab | aab@***.net |
fooo.rb
require 'mysql' begin db = Mysql::connect('localhost','username','password','database') sql = "select * from tablename" rs = db.query sql rs.each do |columns| id = columns[0] nam = columns[2] email = columns[3] end end
文字コードについて
データベースから読みだしたコード(上の例だと、id,nam,email)は、文字コードがASCII-8BITになっているので、nam.force_encoding("utf-8")
とかして、文字コードを変更しないと、文字列を操作したときに文字化けする。