0

モデルクラスのデータセットから行を取得しようとしています

require 'sequel' class Item < Sequel::Model end

私のhello.rbファイルの1つは

require "rubygems"
require './post'
require "sequel"
require './item'
# connect to an in-memory database
#DB = Sequel.connect('postgres://ritesh:newpassword@localhost')

puts Item.filter(:id =>'1').first

それは私に出力を与えます

#<Item:0xb693996c>

ID フィールドが 1 の行のすべての列を取得したいのですが、どのようなクエリが必要ですか??

4

1 に答える 1

1

試す

puts Item.filter(:id =>'1').first.inspect

また

puts Item.filter(:id =>'1').first.to_yaml

yaml(コードで必要な場合のフォーマットを改善するためrequire 'yaml'

于 2013-01-30T17:15:33.363 に答える