「Ruby」の版間の差分
提供: sha.ngri.la
細 |
細 |
||
32行目: | 32行目: | ||
==XMLを操作する== | ==XMLを操作する== | ||
− | + | ===REXML=== | |
+ | *[http://d.hatena.ne.jp/aoi_273/20090311/1236764850 XML処理 REXMLの使い方 - プログラムメモ] | ||
==open-uri== | ==open-uri== |
2014年3月22日 (土) 14:53時点における版
MySQLを使う
$ gem install mysql
id | name | |
---|---|---|
1 | foo baa | 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