class Mysql

MySQL connection class. @example

my = Mysql.connect('hostname', 'user', 'password', 'dbname')
res = my.query 'select col1,col2 from tbl where id=123'
res.each do |c1, c2|
  p c1, c2
end

Copyright © 2008-2012 TOMITA Masahiro tommy@tmtm.org

Copyright © 2003 TOMITA Masahiro tommy@tmtm.org

Mysql