1
vote
2answers
45 views
How can I have two columns in one table point to the same column in another with ActiveRecord?
I run the risk of palm-to-forehead here, but I can't quite figure out how to do this with Rails' ActiveRecord sugar.
I have a tickets table that has two columns (submitter_id and assignee_id) that …
0
votes
3answers
55 views
ActiveRecord :select is messing with my data types
So I have this very simple snippet.
Topic.all(:select => 'count(*) as cnt')[0].cnt # behaves the same on all models
"500" # What, a string?
It seems that for some reason ActiveRecord is …
0
votes
1answer
27 views
What is the best way to do scoped finds based on access control rules in Rails?
Hi
I need to find an elegant solution to scoped finds based on access control rules. Essentially I have the following setup:
Users
Customers
AccessControl - Defines which user has access to another …
0
votes
2answers
43 views
I need help with a Rails ActiveRecord Join - I know how to do it in SQL
I have 2 tables I need to join but the user_id column value is not the same in both tables. So I want to do something like this:
In my controller 4 will be substituted with current_user.id
select * …
1
vote
1answer
30 views
Self-referential association in Rails 2.3
I have model called test, and test can have many tests, and should be able to have a reference to it's parent test if it exists. EG
test <-- parent doesn't exist
test
test
test
test
test
…
1
vote
1answer
40 views
ActiveRecord #find getting wrong class of object
I have two models: CreditCard and BlacklistItem::CreditCard. If I search for a BlacklistItem::CreditCard first, I get the expected behaviour:
>> BlacklistItem::CreditCard.find(:all).first
…
0
votes
1answer
28 views
Chained has_many through: users -> roles -> lists. Finding lists that a user is assigned to (via roles).
It must be a very common problem. I have a chained many-to-many relationship like this:
User n<==>n Role n<==>n List
ActiveRecord models:
class User
# linking to roles
has_many …
4
votes
1answer
76 views
Rails & MSSQL 2008 - Will We Hit Barriers?
The company I am working for is looking to switch platforms from ColdFusion 8 / Windows to Ruby on Rails / Linux. Our database solution will remain as MSSQL 2008 on Windows. I will likely follow up …
0
votes
1answer
20 views
ActiveRecord hating a particular column? (Bizarre)
Hey guys,
I've been working on a web app lately, and Activerecord has started creeping me out- for the most part it's awesome, but it has taken to treating a particular column like a leper.
…
0
votes
1answer
23 views
Rails ActiveRecord - eager loading (sort of) when using ‘build’ from has_many
I have a situation where children are built but not saved, and are then being used in the view with references to the parent. This leads to extensive use of rails record caching. I'd like to have the …
1
vote
1answer
74 views
ActiveRecord interfering with Logger
It appears that using ActiveRecord (which requires ActiveSupport) messes with the Logger class, resulting in difficulties. This can be seen with some example code:
require 'rubygems'
#require …
0
votes
2answers
28 views
ruby on rails undefined method(s) for active record ..
(in /Users/sayedgamal/apps/test)
/Users/sayedgamal/apps/test/config/boot.rb:20:Warning: Gem::SourceIndex#search support for String patterns is deprecated
== CreatePeople: migrating …
0
votes
1answer
42 views
Ruby on Rails. How to show record only once?
Hello.
I want to know how to show a record only exactly after it was created. So i want to show it only once.
Just see. I have model called Claim. User creates new Claim (user is anonymous). I want …
0
votes
3answers
53 views
Passing @object into a rails partial render
I have a partial:
'profiles/_show.html.erb'
that contains code like
<%= @profile.fullname %>
I'm trying to render the partial but I'm not sure how to pass the @profile. I tried using local …
0
votes
1answer
121 views
ActiveRecord named_scope, .scopes
The background to this problem is quite complex and convoluted, and as I am looking for a simple answer, I will leave it by the wayside in explaining my problem, and instead provide this hypothetical …
