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


105

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

回答:


168

多分これを試してください:

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

14
FWIW、空のパラメータの使用は慣用的なルビではありません。そうするのではconnection.executeなくconnection().execute
radixhound 2013年

Rails 4でも動作します。
Leigh McCulloch

github.com/igorkasyanchuk/execute_sql必要なコードが減り、直接Railsコンソールで実行できる
Igor Kasyanchuk

100
connection = ActiveRecord::Base.connection
connection.execute("SQL query") 

8
この場合、connection = ActiveRecord :: Base.connection; connection.execute( "SQL query")は機能します。タイピングを減らす!
ワツシモト2013年

16
または単にActiveRecord::Base.connection.execute("SQL query")
Kasper Grubbe 2014

3
スレッドの問題を回避するために、この接続を後で接続プールに戻す必要がある場合がありますActiveRecord::Base.connection_pool.checkin(connection) 。apidock.com
lee

35

ActiveRecord::Base.connection.exec_query代わりに使用することをお勧めしActiveRecord::Base.connection.executeますActiveRecord::Result

次に、あなたのようなさまざまな方法で様々な結果にアクセスすることができ.rows.eachまたは.to_hash

ドキュメントから:

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

注:ここから私の答えをコピーしました


1
すでに述べたように、exec_queryは実際の結果を返しますが、executeはステータス情報を返すだけです。
Paul Chernoch

24

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"}>, ...]

私のスクリプトはRailsアプリケーションの外にあるので、find_by_sqlが機能しないと思います。
neeraj 2013年

4
あなたが正しい、私はあなたの質問をあまりにも早く読みました。この回答は、質問のタイトルに基づいてこのページにアクセスする他の人を助ける可能性があります。
モントリオールマイク2013年

配列ではなく関係を取得する方法?
МалъСкрылевъ

4

これはどう :

@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を使用しませんでした


1
もちろん、TinyTdsは他のすべての宝石です。ActiveRecordではありません。使用するには、個別にインストールする必要があります。
denis-bu 2013年

1
mysql2とアクティブレコードが利用可能であるように私は長い間、任意の追加のGEMを使用したくない
neeraj

いいですね。質問(タグ/タイトル)でそれを言及してください
ant

2
TinyTDSはMSSQLとSybaseで動作しますが、MySQLでは動作しません。ant:回答の中でそれを言及する必要があります。OPがあなたと同じニッチなDBMSを使用しているとは限りません。
クリフォードヒース2015
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.