所以我正在尝试查询数据库并在“名称列”中获取用户名,并从“image_path”列中获取图像路径,但我不太确定如何在 Ruby on Rails 中编写数据库查询。到目前为止,这是我的代码。有什么建议么?谢谢。
# load rails
require '../../config/boot.rb'
require '../../config/application.rb'
require 'sqlite3'
Rails.application.require_environment!
db = SQLite3::Database.new( "standalone.moose" )
db.execute( "select * from standalone.moose" ) do |row|
end