web-dev-qa-db-ja.com

Rails 3モデルなしでカスタムSQLクエリを実行

データベースを扱うことになっているスタンドアロン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
103
neeraj

たぶんこれを試してください:

ActiveRecord::Base.establish_connection(...)
ActiveRecord::Base.connection.execute(...)
165
denis-bu
connection = ActiveRecord::Base.connection
connection.execute("SQL query") 
100
Sachin R

ActiveRecord::Base.connection.exec_query (Rails 3.1+で利用可能)を返すActiveRecord::Base.connection.executeの代わりにActiveRecord::Resultを使用することをお勧めします。

その後、.rows.each.to_hashなどのさまざまな方法で、さまざまな結果でそれにアクセスできます。

docs から:

result = ActiveRecord::Base.connection.exec_query('SELECT id, title, body FROM posts')
result # => #<ActiveRecord::Result:0xdeadbeef>


# Get the column names of the result:
result.columns
# => ["id", "title", "body"]

# Get the record values of the result:
result.rows
# => [[1, "title_1", "body_1"],
      [2, "title_2", "body_2"],
      ...
     ]

# Get an array of hashes representing the result (column => value):
result.to_hash
# => [{"id" => 1, "title" => "title_1", "body" => "body_1"},
      {"id" => 2, "title" => "title_2", "body" => "body_2"},
      ...
     ]

# ActiveRecord::Result also includes Enumerable.
result.each do |row|
  puts row['title'] + " " + row['body']
end

注: here から回答をコピーしました

34
hajpoj

find_by_sql を使用することもできます

# A simple SQL query spanning multiple tables
Post.find_by_sql "SELECT p.title, c.author FROM posts p, comments c WHERE p.id = c.post_id"
> [#<Post:0x36bff9c @attributes={"title"=>"Ruby Meetup", "first_name"=>"Quentin"}>, ...]
24
montrealmike

これはどう :

@client = TinyTds::Client.new(
      :adapter => 'mysql2',
      :Host => 'Host',
      :database => 'siteconfig_development',
      :username => 'username',
      :password => 'password'

sql = "SELECT * FROM users"

result = @client.execute(sql)

results.each do |row|
puts row[0]
end

TinyTds gemをインストールする必要があります。質問で指定しなかったため、Active Recordを使用しませんでした。

4
ant