sqlite3-rubyを使ってSQLite3ファイルからの検索結果をHashとして読み込む
sqlite3-rubyを使って、SQLite3にアクセスしてデータの取得、加工がしたい。
db.executeした際に配列が帰ってきた。カラム名でアクセス出来る方法がないか探したところ、results_as_hash = true
にすれば、Hashで返ってくることがわかった。
I’d like the rows to be indexible by column name.
By default, each row from a query is returned as an Array of values. This means that you can only obtain values by their index. Sometimes, however, you would like to obtain values by their column name.
The first way to do this is to set the Database property “results_as_hash” to true. If you do this, then all rows will be returned as Hash objects, with the column names as the keys. (In this case, the “fields” property is unavailable on the row, although the “types” property remains.)
デフォルトだと配列で返ってくるので、results_as_hashをtrueにすれば、ハッシュとして返却され、カラム名でアクセスできる。
db.results_as_hash = true
db.execute( "select * from table" ) do |row|
p row['column1']
p row['column2']
end
The other way is to use Ara Howard’s ArrayFields module. Just require “arrayfields”, and all of your rows will be indexable by column name, even though they are still arrays!
require 'arrayfields'
...
db.execute( "select * from table" ) do |row|
p row[0] == row['column1']
p row[1] == row['column2']
end
sqlite3ファイルから読み込み
require 'rubygems'
require 'sqlite3'
db = SQLite3::Database.new("development.sqlite3")
db.results_as_hash = true
sql = "select * from entries"
db.execute(sql) do |row|
p row
end
参考
Related contents
TECH
2017.06.25
TECH
2017.06.24
TECH
2016.06.05
TECH
2016.02.10
TECH
2015.03.27
TECH
2014.12.13
TECH
2012.04.19
TECH
2012.04.03