Ruby on Rails
Thursday, March 29, 2012
I don't know what are trying to do, but why are you not using arel approach for 2 conditions statements, You could try this possibility
users.where(users[:name].eq('bob').and(users[:age].lt(25)))
regards
--
thiagocifani
-- 2012/3/29 Seth Willits <lists@ruby-forum.com>
Using 3.2.2, doing:
a = Model.where("created_at > '2011-10-01
00:00:00'").where("created_at < '2012-01-01
00:00:00'")
Always results in
ActiveRecord::StatementInvalid (Mysql2::Error: Lost connection to
MySQL server during query: SELECT `models`.* FROM `models`
WHERE (created_at > '2011-10-01 00:00:00') AND (created_at <
'2012-01-01 00:00:00'))
If I leave off one of the conditions it works fine. The raw query via
Mysql2::Client#query works fine, and returns within milliseconds, so
it's not a timeout issue.
Any ideas? I'm stumped.
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
thiagocifani
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment