Active Record is a pattern that combines domain logic with storage abstraction in single object.
0
votes
2answers
46 views
I can't make Active Record simple query
This:
User.where 'id < ?', 5
fails with this message:
NoMethodError: undefined method `join' for #<Class:0x007fa4c9b5a598>
When I try:
User.where 'id < 5'
it works.
In another ...
0
votes
2answers
26 views
Has_one association confusion, I want it reversed
I'm pretty new to rails and lately I found that I understood activerecords has_one association contrary to how it actually works. Refering to the example from rubyonrails guide I imagined that it is ...
0
votes
1answer
24 views
ActiveRecord joins: integer columns converted to strings
I have a model named Article, which I am joining with TwitterShare as shown below:
articles = Article.joins("LEFT OUTER JOIN twitter_shares ON articles.id = ...
2
votes
2answers
20 views
render ActiveRecord response in from Controller to View
I'm new to Rails. I'm using Rails 3.2.13. I'll try to keep my question succinct:
In my controller, I want to get the last 10 entries from the Observation table. I have:
def index
@times = ...
2
votes
1answer
50 views
How to validate parent-child relationships in Rails?
I have a Category model which can have multiple parent and child categories. I have modelled this using a Hierarchy model which contains parent_category and child_category attributes.
I can validate ...
0
votes
1answer
37 views
How to find related records in Ruby on Rails?
I have this class:
class Invoice < ActiveRecord::Base
has_many :payments
def payable?
amount_payable != 0
end
end
How can I get the total of all payments whose invoice is payable?
...
0
votes
1answer
18 views
ActiveRecord find with joins and associations?
I have a model TwitterUser that has_one website as shown in the model below:
class TwitterUser < ActiveRecord::Base
has_one :website, :foreign_key => :id, :primary_key => :website_id
end
...
0
votes
1answer
23 views
CodeIgniter - SQL Query AND clause with table columns
I'm new to CodeIgniter and I'm struggling with the Active Record Class and the apostrophes it adds to my query:
This is the query that CodeIgniter outputs (Via enable_profiler):
SELECT ...
0
votes
1answer
30 views
Ambiguous column name in Ruby on Rails with SQLite database?
I am getting this error in my Rails app:
ActiveRecord::StatementInvalid in PaymentsController#index
SQLite3::SQLException: ambiguous column name: date: SELECT COUNT(*) FROM "payments" INNER JOIN ...
0
votes
1answer
43 views
Breaking changes in Rails 4 JSON rendering?
I started a new app atop Rails 4 and I've noticed what seems to be a breaking change in how JSON rendering is implemented by default, but I can't find it written up anywhere so I was wondering if ...
0
votes
1answer
17 views
Destroy dependent objects in Rails using one transaction
Please, help to optimize object destroing in Rails application: I have relatively big database, and when I want to delete user from it all dependent objects removing takes > 1 minute. It's very long. ...
1
vote
1answer
36 views
Active Record: Find collection based on sum of two associated tables
I am trying to find the collection of 'underpaid' events in our system. We are running Rails 3.2 using a Postgres database.
The data structure is as follows.
class Event < ActiveRecord::Base
...
0
votes
0answers
9 views
uninitialized constant ActiveRecord::Base::Delayed::Job
I am trying to add an owner field to DelayedJob. I found this SO answer showing a way to do it
But when I code things up like mentioned in that answer, and in the rails console I do
...
0
votes
1answer
18 views
Eager load grandchild attribute without child in rails
In Rails, I'm trying to eager load something to speed it up. I've got a Parent-Child-Grandchild situation, but only need the Parent and an attribute of the Grandchild. If I...
...
0
votes
1answer
39 views
Adding instance methods during class definition
I'm currently working on my first gem and making my first experiences in meta programming.
Therefore, I would like some feedback on how to correctly define an instance method during a class ...
1
vote
1answer
19 views
find_or_create doesn't pass second condition to create
There are two entities here - facilities and agencies. Each facility belongs_to :agency
I am writing the seed script for the database that reads CSV files and parses out data.
This should add ...
0
votes
2answers
15 views
selecting records that have a many to many relationship using active record
I have a Rails app that has the following models. The empgroup is for a many-to-many relationship between workgroup and employee.
employee.rb
has_many :empgroups
has_many :workgroups, through: ...
0
votes
1answer
22 views
Yii activerecord and pagination count() slow query
So basicly the problem is in query SELECT COUNT(*) which executed in calculateTotalItemCount function in activedataprovider. As i understood it needed for pagination for $itemcount variable. The ...
0
votes
1answer
4 views
ActiveRecord test Greater/Lesser Than inside Hash Condition
The Question: Is it possible to test within a hashed condition if an attribute of a joined table is greater/lesser than a value
AN EXAMPLE: test if actors age is greater than ageVariable:
Is it ...
0
votes
1answer
14 views
How do you call a stored procedure with activerecord?
The only relevant answer to these kind of questions was this, but it doesn't help.
Any push in the right direction would be appreciated, thanks!
1
vote
1answer
18 views
Many to Many relationship :through giving 'Could not find the association' error
In my model an Item is created by a User and can be purchased by many Users, and a User can purchase many Items.
User, Item, and Purchase are defined, using AcvtiveRecord with superfluous details ...
0
votes
1answer
18 views
Error when creating criteria from model with defaultScope attributes come from joined model
I have add parameter from joined attribute (event.deleted_at, event.status) in defaultScope method Model:
public function defaultScope()
{
return array(
'condition'=>'
...
1
vote
1answer
20 views
With Has_many, how to return a list of objects without a certain related object?
My Event has_many :event_people, An EventPerson has, amongst others a field called "Role".
I want to find the query or WHERE to return a list of events without an EventPerson with role Moderator.
...
0
votes
1answer
21 views
ActiveRecord associations outside Rails
I am using active_record to connect to a database. I am working in plain ruby and not rails. I can connect to the database fine and do all the stuff except associations.
Can I do something like this?
...
0
votes
1answer
15 views
Upgrade to Rails 3 and lost ability to run Active Record database migrations
I have a corporate web application that, for various reasons, has Active Record connections to SQL Server as well as Mongoid Documents. There has been resistance to updating to Rails 3 until now (yes, ...
0
votes
1answer
30 views
Nested factories
I am trying to define factories for my tests like this:
factory :content do
id
name
after(:create) do |content|
create(:title, :title_id => content.id)
end
end
# --------------
...
0
votes
0answers
27 views
rails serialized association instead of has_many through
Can I serialize an association? I mean, I have a Question model that has_many Interests :through => :interests_questions. Questions and interests tables are huge and I don't want to make their size ...
0
votes
1answer
20 views
Rails 3 Attendance Form with Multiple days per week and Multiple children
I am trying to create a form that will allow you to enter or update the time for attendance on a daily basis, with the ability to show each weeks worth of records for each child.
I am having trouble ...
1
vote
1answer
18 views
Rails application separated in 2 layers (data reception / data reading)
I have an application with 2 different layers:
first layer: ruby tcp server receiving a lot of data
This one is a very light application running EvenMachine, it only receives the data, make some ...
0
votes
2answers
40 views
Rails query interface where clause issue?
i am try to run the sql query as follows
@applicants = Applicant.where("applicants.first_name LIKE ? AND applicants.status = ?", "%#{people}%", ["new", "in-review"] )
I am getting an mysql error ...
1
vote
2answers
36 views
Create an ActiveRecord Instance from Json
What is the best way to create a new Ruby/Rails object without triggering any database actions?
For example if I have a Task class
class Task < ActiveRecord::Base
has_many :tags
has_one ...
2
votes
0answers
32 views
Deprecation warning when using has_many :through :uniq in Rails 4
Rails 4 has introduced a deprecation warning when using :uniq => true with has_many :through. For example:
has_many :donors, :through => :donations, :uniq => true
Yields the following ...
1
vote
0answers
27 views
Can't create delegated model in Rails
I have Client model and a Detail model. Detail model must be created together with Client.
class Client < AdminUser
has_one :detail, class_name: 'ClientDetail', autosave: true
delegate ...
1
vote
1answer
26 views
Unable to :include model with two relations
I'm trying to model a table with host records (id, hostname, netid) and a table with routing connections which represents a connection between two routes (id, src_id,src_ip,dst_id,dst_ip).
When I ...
1
vote
1answer
40 views
How to combine these two Queries in Rails 3?
In my View, I need to show a list with the name of each City with the available services in that area (City Services) below each name. This involves two queries. But, how can I combine them and show ...
0
votes
0answers
27 views
how to use or_where and where in codeigniter
I am facing a problem when using active record or_where
how i do or only for one particular field i.e meeting_status
$this->db->_protect_identifiers=false;
...
0
votes
1answer
44 views
Remove an element from the results after querying. Rails
Let's say I have a database table Bananas. I can get all the bananas from the query
@bananas = Bananas.all
now @bananas is an Array of all rows in the table. Now, I want to remove the default ...
0
votes
1answer
16 views
In rails build the relationship in the has_and_belongs_to_many association
In the rails app, I have an advisor model and department model. An advisor has and belongs to many departments and a department has and belongs to many advisors.
If an advisor and a department ...
0
votes
1answer
35 views
SQL Query to Rails 3 for average user ratings
I have a rails app that rates restaurants on specific dimensions using the letsrate gem. I'd like to calculate the average of all ratings for each restaurant and display it to the user in an array on ...
0
votes
1answer
21 views
Rails has_one per scope
I have three models as follows:
class User < ActiveRecord::Base
...
has_many :feeds
...
end
class Project < ActiceRecord::Base
...
has_many :feeds
...
0
votes
1answer
17 views
Get scoped relation in scope body or in class method
can you help to newbie, please?
I need something like:
scope :randomized, lambda { actual.offset( rand( actual.count ) ) }
def self.random
randomized.first
end
problem is in count... it is ...
0
votes
0answers
34 views
Getting OutOfMemoryError: GC overhead limit exception when using ActiveRecord::find_in_batces (20 records a time)
I am using:
Rails 3.0.7
jruby 1.6.7 (ruby-1.8.7-p357)
and trying to process ~360K DB records in batches of 20, as following:
BackJobs.find_in_batches(:conditions => "progress = -1", :batch_size ...
0
votes
1answer
31 views
Is this a bug in Rails validations or am I doing something wrong?
This involves validations on a join table, validating the activerecord on either side of the join against each other. It seems to not behave as expected, allowing a violation of the validation.
I ...
1
vote
2answers
24 views
Updating Activerecord queries to rails 3.2 format : find(:all) to all
I am updating the active record queries of a rails project. I have not been able to find out how to update when the query is
foo.find(:all, :stuff, :id, :thing, @bar)
I would know how to handle a ...
0
votes
2answers
36 views
How to search an integer field in ActiveRecord?
I want users to be able to search my database using this function:
def self.search(query)
new_query = (query.to_d * 100).to_i
where("price_in_cents LIKE ?", new_query)
end
The problem is that ...
0
votes
2answers
46 views
How do I match all “and” using ActiveRecord?
I need an ActiveRecord query to match ALL items in a params[] array.
My current method gives results based on finding any of the tags, not "MATCH ALL"
class Product < ActiveRecord::Base
...
0
votes
1answer
30 views
ActiveRecord: class methods without scoping
I need to create a class method of my ActiveRecord.
But that method is not meant to be a scope, so I'd like to prevent misusage of it like a scope.
Is it possible to do?
0
votes
1answer
11 views
Rails Article.find 1 raises ActiveRecord::StatementInvalid on legacy database
I'm creating a rails app over a legacy database table. Everything works fine locally, but on the server I hit this error whenever I do Article.find(1)
Could not log "sql.active_record" event. ...
0
votes
2answers
22 views
rails how to save a model with has_many through association
I am having models like
// Contains the details of Parties (Users)
class Party < ActiveRecord::Base
has_many :party_races
has_many :races, :through=>:party_races
end
// Contains the ...
1
vote
1answer
54 views
Rails 3 polymorphic association with foreign_type column as integer
We have a certain problem with polymorphic relation in rails/activerecord.
As mentioned in an other question .
The reason we need this kind of polymorphic relation with a integer foreign_type column ...

