2013/01/20

Recent entries from same category

  1. Ruby の Array#<< は Array#push よりも速いか
  2. Ruby の a = a + 1 はなぜ undefined method '+' for nil:NilClass なのか
  3. Re: Ruby 製バッチ処理を省メモリ化した
  4. Crystal と CRuby でHTTPサーバのベンチマーク
  5. pure mruby な JSON パーサ書いた。

以前、mruby-sqlite3 は作ったのでぜひ MySQL もやりたいなーと思いながら手を付けてなかったけどようやく重い腰をあげて書いた。
mattn/mruby-mysql - GitHub
https://github.com/mattn/mruby-mysql
動作は SQLite3 のと同じにしてあるつもりです。
MySQL の拡張は何度か書いた事あったけど、レコードを弄る様な物は随分昔に触ったきりで思い出せないし、API がいろいろ新しくなっててハマった。
最初、MYSQL_ROW を使って全部文字列でやれば良くね?と思ってたけど、結局ちゃんと MYSQL_BIND 使って書いた。

これで残すは PostgreSQL だけですが、実は PostgreSQL 使った拡張は今まで書いた事が無い。
誰か作って下さい。
こういうコードが動きます。
#!mruby

db = MySQL::Database.new('localhost''root''''foo')
begin
  db.execute_batch 'drop table foo'
  db.execute_batch 'drop table bar'
rescue RuntimeError
ensure
  db.execute_batch 'create table foo(id int primary key, text text, f float)'
  db.execute_batch 'create table bar(id int primary key, text text, f float)'
end

db.execute_batch('delete from foo')
db.execute_batch('insert into foo(id, text) values(?, ?)'1'foo')
db.execute_batch('insert into foo(id, text) values(?, ?)'2'bar')
db.transaction
db.execute_batch('insert into foo(text) values(?)''baz')
db.rollback
db.transaction
db.execute_batch('insert into foo(text) values(?)''bazoooo!')
db.commit

db.transaction
(1..100).each_with_index {|x,i|
  db.execute_batch('insert into bar(id, text) values(?,?)', i, x)
}
db.commit

db.execute('select * from bar'do |rowfields|
  puts row
end

#puts db.execute('select id from foo where text = ?', 'foo').next

db.execute_batch('delete from bar')
db.execute_batch('insert into bar(id, text, f) values(1,\'bababa\', NULL)')
db.execute_batch('insert into bar(id, text, f) values(2,\'bababa\', 3.14)')
db.execute('select * from bar'do |rowfields|
  puts row
end
row = db.execute('select * from bar')
puts row.fields
while cols = row.next
  puts cols
end
row.close

db.close
Posted at by | Edit