ruby DBI安裝使用指南
1.安裝
首先,我是使用mysql進行測試的,你的機器上需要安裝mysql資料庫。
然後執行:
gem install mysql
到rubyforge下載ruby-DBI,解壓後cd到目錄執行如下命令:
ruby setup.rb config --with=dbi,dbd_mysql
ruby setup.rb setup
ruby setup.rb install
完整的setup命令引數參考DBI的doc
2.完整例子
DBI是一類似於ODBC的開發式的統一的資料庫程式設計介面,結構層次上可以分為兩層:
1.Database Interface——資料庫介面層,與資料庫無關,提供與資料庫無關的標準介面
2.Database Driver——資料庫驅動,與資料庫相關
DBI也是很簡單易用的,一個完整的使用例子,對於初學者可能有點幫助:
首先,我是使用mysql進行測試的,你的機器上需要安裝mysql資料庫。
然後執行:
gem install mysql
到rubyforge下載ruby-DBI,解壓後cd到目錄執行如下命令:
ruby setup.rb config --with=dbi,dbd_mysql
ruby setup.rb setup
ruby setup.rb install
完整的setup命令引數參考DBI的doc
2.完整例子
DBI是一類似於ODBC的開發式的統一的資料庫程式設計介面,結構層次上可以分為兩層:
1.Database Interface——資料庫介面層,與資料庫無關,提供與資料庫無關的標準介面
2.Database Driver——資料庫驅動,與資料庫相關
DBI也是很簡單易用的,一個完整的使用例子,對於初學者可能有點幫助:
require 'dbi'
begin
#連線資料庫
dbh=DBI.connect("DBI:Mysql:dbi_test:localhost","root","")
dbh.columns("simple").each do |h|
p h
end
#示範3種事務處理方式
#手動commit
dbh["AutoCommit"]=false
1.upto(10) do |i|
sql = "insert into simple (name, author) VALUES (?, ?)"
dbh.do(sql, "Song #{i}", "#{i}")
end
dbh.commit
#使用transaction方法
dbh.transaction do |dbh|
1.upto(10) do |i|
sql = "insert into simple (name, author) VALUES (?, ?)"
dbh.do(sql, "Song #{i}", "#{i}")
end
end
#使用SQL語句
dbh.do("SET AUTOCOMMIT=0")
dbh.do("BEGIN")
dbh["AutoCommit"]=false
dbh.do("UPDATE simple set name='test' where id='1'")
dbh.do("COMMIT")
#查詢
sth=dbh.execute("select count(id) from simple")
puts "bookCount:#{sth.fetch[0]}"
sth.finish
begin
sth=dbh.prepare("select * from simple")
sth.execute
while row=sth.fetch do
p row
end
sth.finish
rescue
end
#上面這段查詢可以改寫為:
#dbh.select_all("select * from simple") do |row|
# p row
#end
#使用工具類輸出xml格式結果集以及測量查詢時間
sql="select * from simple"
mesuretime=DBI::Utils::measure do
sth=dbh.execute(sql)
end
puts "SQL:#{sql}"
puts "Time:#{mesuretime}"
rows=sth.fetch_all
col_names=sth.column_names
sth.finish
puts DBI::Utils::XMLFormatter.table(rows)
dbh.do("delete from simple")
rescue DBI::DatabaseError=>e
puts "error code:#{e.err}"
puts "Error message:#{e.errstr}"
ensure
dbh.disconnect if dbh
end
begin
#連線資料庫
dbh=DBI.connect("DBI:Mysql:dbi_test:localhost","root","")
dbh.columns("simple").each do |h|
p h
end
#示範3種事務處理方式
#手動commit
dbh["AutoCommit"]=false
1.upto(10) do |i|
sql = "insert into simple (name, author) VALUES (?, ?)"
dbh.do(sql, "Song #{i}", "#{i}")
end
dbh.commit
#使用transaction方法
dbh.transaction do |dbh|
1.upto(10) do |i|
sql = "insert into simple (name, author) VALUES (?, ?)"
dbh.do(sql, "Song #{i}", "#{i}")
end
end
#使用SQL語句
dbh.do("SET AUTOCOMMIT=0")
dbh.do("BEGIN")
dbh["AutoCommit"]=false
dbh.do("UPDATE simple set name='test' where id='1'")
dbh.do("COMMIT")
#查詢
sth=dbh.execute("select count(id) from simple")
puts "bookCount:#{sth.fetch[0]}"
sth.finish
begin
sth=dbh.prepare("select * from simple")
sth.execute
while row=sth.fetch do
p row
end
sth.finish
rescue
end
#上面這段查詢可以改寫為:
#dbh.select_all("select * from simple") do |row|
# p row
#end
#使用工具類輸出xml格式結果集以及測量查詢時間
sql="select * from simple"
mesuretime=DBI::Utils::measure do
sth=dbh.execute(sql)
end
puts "SQL:#{sql}"
puts "Time:#{mesuretime}"
rows=sth.fetch_all
col_names=sth.column_names
sth.finish
puts DBI::Utils::XMLFormatter.table(rows)
dbh.do("delete from simple")
rescue DBI::DatabaseError=>e
puts "error code:#{e.err}"
puts "Error message:#{e.errstr}"
ensure
dbh.disconnect if dbh
end
相關文章
- 基於oracle linux的 DBI/DBD 標準化安裝OracleLinux
- ruby安裝及升級
- Jenkins 使用指南 之 服務安裝篇Jenkins
- 樹莓派無法升級Ruby或安裝Jekyll樹莓派
- [Ruby]format xml with RubyORMXML
- autoit au3 IT管理員使用指南(一)基礎安裝、測試、編譯編譯
- Vue框架TypeScript裝飾器使用指南Vue框架TypeScript
- Ruby 札記 - 淺嘗 Ruby 特性
- Ruby 札記 - 淺談和配置 Ruby
- Ruby 3.0.0釋出:Ruby3將比Ruby2快3倍
- Ruby 類
- rails on ruby,ruby on rails 之程式碼塊(二)AI
- Ruby 札記 - 縱覽優雅的 Ruby
- 安裝npm 解除安裝npm 安裝apidocNPMAPI
- [Ruby Notes] Proc
- Ruby Struct EqualStruct
- ruby gems列表
- JavaScript and Ruby in ABAPJavaScript
- Ruby迭代器
- Ruby 札記 - Ruby 集合家族之雜湊(Hash)
- Ruby 札記 - Ruby 集合家族之陣列(Array)陣列
- centos7 ruby版本過低,升級ruby版本CentOS
- BiocManager安裝,devtools安裝dev
- Linux安裝解除安裝MySQLLinuxMySql
- linux 安裝yum 安裝phpLinuxPHP
- Ubuntu解除安裝和安裝Ubuntu
- 02 安裝git、安裝TortoiseGitGit
- cocoapods安裝/解除安裝/使用
- JDK安裝和解除安裝JDK
- ffmpeg安裝之mac安裝Mac
- docker安裝及解除安裝Docker
- [ 安裝 ] Zeppelin安裝步驟!
- win10安裝版怎麼安裝_安裝版win10安裝教程Win10
- ruby on rails 小技巧AI
- Ruby on Rails Ping ++ 支付AI
- Debugging Ruby in VS Code
- Logstash中的ruby
- Ruby 3.1.0 釋出
- Ruby例外處理