学无所长,一事无成
发布时间:2012-02-20 22:01:01
一、本章开始学习 DBI::DatabaseHandle通过 dbi.connect,我们可以获得一个 DBI::DatabaseHandle,就是我们常用的 dbh:dbh = DBI.connect('dbi:OCI8:test','user','passwd')dbh 的主要方法有: commit、rollback; prepare、execute、do;select_one、 select_all;disconnect等。二、 DBI::DatabaseH.........【阅读全文】
发布时间: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.........【阅读全文】