Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
2k views

How do I pass a string to a has_many :finder_sql parameter?

In my application, a user has_many tickets. Unfortunately, the tickets table does not have a user_id: it has a user_login (it is a legacy database). I am going to change that someday, but for now ...
1
vote
2answers
56 views

finder_sql does not parse string with Rails

I have the problem that the query I use for finder_sql is not parsed correctly before it is handed over to PostgreSQL resulting in a database syntax error. To illustrate the problem I just used the ...
0
votes
3answers
1k views

Rails3: how to set default conditions to has_many

I have boxes and balls. Balls are in boxes. Ball can be either red and green. class Box < ActiveRecord::Base has_many :balls end class Ball < ActiveRecord::Base belongs_to :box scope ...
0
votes
2answers
686 views

Rails find_by_sql - how to run generic queries

I need to execute this query to find out the next auto_increment value that will be used by MySQL for a particular table. find_by_sql ["select auto_increment from information_schema.tables where ...