学无所长,一事无成
发布时间:2012-02-19 22:10:34
一、前面学习了 DBI::ROW ,接下来学习 DBI::StatementHandle。先看下这个例子:dbh = DBI.connect('dbi:OCI8:test','user','passwd')sth = dbh.execute("select 'hello,world' from dual")sth.fetch do |row| p rowendsth.finishdbh.disconnect代码中 sth 就是 DBI::State.........【阅读全文】