1. ホーム
  2. sql

[解決済み] Rails 3 モデルなしでカスタムSQLクエリを実行する

2022-10-31 11:43:16

質問

データベースを処理するためのスタンドアローンrubyスクリプトを書く必要があります。私はrails 3で以下のコードを使用しました。

@connection = ActiveRecord::Base.establish_connection(
:adapter => "mysql2",
:host => "localhost",
:database => "siteconfig_development",
:username => "root",
:password => "root123"
)

results = @connection.execute("select * from users")
results.each do |row|
puts row[0]
end

が、エラーになる:-)

`<main>': undefined method `execute' for #<ActiveRecord::ConnectionAdapters::ConnectionPool:0x00000002867548> (NoMethodError)

何を見落としているのでしょうか?

解決方法

denis-buさんから解決策を得た後、私は以下の方法を使用し、それもうまくいきました。

@connection = ActiveRecord::Base.establish_connection(
            :adapter => "mysql2",
            :host => "localhost",
            :database => "siteconfig_development",
            :username => "root",
            :password => "root123"
)

sql = "SELECT * from users"
@result = @connection.connection.execute(sql);
@result.each(:as => :hash) do |row| 
   puts row["email"] 
end

どのように解決するのですか?

たぶん、これを試してみてください。

ActiveRecord::Base.establish_connection(...)
ActiveRecord::Base.connection.execute(...)