Active Record is a pattern for accessing rows of a database. It also refers to the Ruby library of the same name which is part of the Ruby on Rails framework.

learn more… | top users | synonyms (1)

60
votes
14answers
6k views

Why all the Active Record hate? [closed]

As I learn more and more about OOP, and start to implement various design patterns, I keep coming back to cases where people are hating on Active Record. Often, people say that it doesn't scale well ...
57
votes
12answers
19k views

What is the best way to set default values in ActiveRecord?

What is the best way to set default value in ActiveRecord? I see a post from Pratik that describes an ugly, complicated chunk of code: ...
48
votes
2answers
7k views

Do rails rake tasks provide access to ActiveRecord models?

I am trying to create a custom rake task, but it seems I dont have access to my models. I thought this was something implicitly included with rails task. I have the following code in ...
46
votes
3answers
16k views

Rails :include vs. :joins

This is more of a "why do things work this way" question rather than a "I don't know how to do this" question... So the gospel on pulling associated records that you know you're going to use is to ...
46
votes
5answers
12k views

What is the easiest way to duplicate an activerecord record?

I want to make a copy of an activerecord record, changing a single field in the process (in addition to the id). What is the simplest way to accomplish this? I realize I could create a new record, ...
43
votes
4answers
13k views

What is causing this ActiveRecord::ReadOnlyRecord error?

This follows this prior question, which was answered. I actually discovered I could remove a join from that query, so now the working query is start_cards = DeckCard.find :all, :joins => [:card], ...
39
votes
1answer
10k views

Rails find_or_create by more than one attribute?

There is a handy dynamic attribute in active-record called find_or_create_by: Model.find_or_create_by_<attribute>(:<attribute> => "") But what if I need to find_or_create by more than ...
38
votes
1answer
11k views

How do you write a migration to rename a Model and its table in Rails?

I'm terrible at naming and realize that there are a better set of names for my models in my Rails app. Is there a way to use a migration to rename a model and its table?
37
votes
6answers
9k views

override ActiveRecord attribute methods

An example of what I'm talking about: class Person < ActiveRecord::Base def name=(name) super(name.capitalize) end def name super().downcase # not sure why you'd do this; this is ...
33
votes
4answers
6k views

What exactly is Arel in Rails 3.0?

I understand that it is a replacement for ActiveRecord and that it uses objects instead of queries. But... why is this better? will objects/queries be "easier" to create? will it lead to more ...
26
votes
7answers
33k views

Rails Active Record find(:all, :order => ) issue

I seem to be unable to use the ActiveRecord::Base.find option :order for more than one column at a time. For example, I have a "Show" model with date and attending columns. If I run the following ...
25
votes
5answers
916 views

How to model interpretations of rap music

I just started working on a website that will help people understand what rappers are talking about. Users will see the lyrics to a rap song and they'll be able to click certain lyrics to see an ...
24
votes
2answers
9k views

rail 3 where condition using NOT NULL

Using the rails 3 style how would I write the opposite of: Foo.includes(:bar).where(:bars=>{:id=>nil}) I want to find where id is NOT null. I tried: ...
22
votes
3answers
7k views

How do I get the name of a Ruby class?

How can I get the class name from an ActiveRecord object? I have: result = User.find(1) I tried: result.class # => User(id: integer, name: string ...) result.to_s # => ...
22
votes
14answers
13k views

How can I avoid running ActiveRecord callbacks?

I have some models that have after_save callbacks. Usually that's fine, but in some situations, like when creating development data, I want to save the models without having the callbacks run. Is ...
22
votes
12answers
22k views

Rails model without database

I want to create a Rails (2.1 and 2.2) model with ActiveRecord validations, but without a database table. What is the most widely used approach? I've found some plugins that claim to offer this ...
21
votes
4answers
8k views

rails generate model field:type -what are the options for field:type?

I know this is a silly question but like much about learning Rails I find the documentation incredibly difficult to find/navigate. I'm trying to generate a new model and forget the syntax for ...
21
votes
4answers
9k views

Ruby on rails connection problem

I have a Ruby on Rails project that I was developing on a hosted server but have decided to work on my local windows machine with. To get started I thought I'd make sure that I could just take my ...
20
votes
7answers
13k views

How to handle Ruby on Rails error: “Please install the postgresql adapter: `gem install activerecord-postgresql-adapter'”

Running a Ruby on Rails (RoR) app or Ruby code which uses the ActiveRecord framework, you get the error message: Please install the postgresql adapter: gem install ...
20
votes
8answers
5k views

How can I see the SQL that will be generated by a given ActiveRecord query in Ruby on Rails

I would like to see the SQL statement that a given ActiveRecord Query will generate. I recognize I can get this information from the log after the query has been issued, but I'm wondering if there is ...
19
votes
9answers
4k views

Why doesn't Rails' “errors.full_messages” replace attribute and message variables?

Having a strange problem with a rails model I just created. Here are my validations: validates_presence_of :from_name, :message => 'Please provide a from name.' validates_presence_of :from_email ...
19
votes
3answers
4k views

Can you get DB username, pw, database name in Rails?

I'm writing a rake task that does some DB work outside of Rails/ActiveRecord. Is there a way to get the DB connection info (host, username, password, DB name) for the current environment as defined ...
18
votes
5answers
16k views

How do I create a default value for attributes in Rails activerecord's model?

I want to create a default value for an attribute by defining it in ActiveRecord. By default everytime the record is created, I want to have a default value for attribute :status. I tried to do this: ...
17
votes
5answers
295 views

Rails Models: how would you create a pre-defined set of attributes?

I'm trying to figure out the best way to design a rails model. For purposes of the example, let's say I'm building a database of characters, which may have several different fixed attributes. For ...
17
votes
4answers
4k views

Namespaced models in Rails: What's the state of the union?

Since the beginning, Rails has had issues with namespaced models. As time went on, pretty much everybody gave up on using it. Myself included. With Rails 2.3 out, I'd like an update on the situation. ...
17
votes
6answers
6k views

Overriding id on create in ActiveRecord

Is there any way of overriding a model's id value on create? Something like: Post.create(:id => 10, :title => 'Test') would be ideal, but obviously won't work.
16
votes
4answers
535 views

Count, size, length…too many choices in Ruby?

I can't seem to find a definitive answer on this and I want to make sure I understand this to the "n'th level" :-) a = { "a" => "Hello", "b" => "World" } a.count # 2 a.size # 2 a.length # 2 a = ...
16
votes
3answers
4k views

ActiveRecord, has_many :through, and Polymorphic Associations

Folks, Want to make sure I understand this correctly. And please disregard the case for inheritance here (SentientBeing), trying to instead focus on polymorphic models in has_many :through ...
15
votes
2answers
5k views

Rails 3 migrations: Adding reference column?

If I create a new rails 3 migration with (for example) rails g migration tester title:tester user:references , everything works fine...however if I add a column with something along the lines of: ...
15
votes
4answers
21k views

How do you scope ActiveRecord associations in Rails 3?

I have a Rails 3 project. With Rails 3 came Arel and the ability to reuse one scope to build another. I am wondering if there is a way to use scopes when defining a relationship (e.g. a "has_many"). ...
15
votes
4answers
4k views

How would you test observers with rSpec in a Ruby on Rails application?

Suppose you have an ActiveRecord::Observer in one of your Ruby on Rails applications - how do you test this observer with rSpec?
14
votes
5answers
5k views

Random record in ActiveRecord

I'm in need of getting a random record from a table via ActiveRecord. I've followed the example from Jamis Buck from 2006. However, I've also come across another way via a Google search (can't ...
14
votes
2answers
11k views

Rails named_scopes with joins

I'm trying to create a named_scope that uses a join, but although the generated SQL looks right, the result are garbage. For example: class Clip < ActiveRecord::Base named_scope :visible, ...
13
votes
2answers
3k views

DataMapper vs ActiveRecord in Rails 3

I am curious on what you guys think about DataMapper and what benefits does it bring over the new and improved ActiveRecord in Rails 3. I appreciate your opinions.
13
votes
4answers
3k views

Copy model instances in Rails

I have a model Foo with attributes id, name, location. I have an instance of Foo: f1 = Foo.new f1.name = "Bar" f1.location = "Foo York" f1.save I would like to copy f1 and from that copy, create ...
12
votes
3answers
284 views

Model an undirected graph in Rails?

Importing the language of graph databases, understand nodes (represented by circles), edges (represented by arrows), and properties (metadata of nodes / edges) The graphic (courtesy of ...
12
votes
2answers
1k views

Rails update_attributes without save?

Is there an alternative to update_attributes that does not save the record? So I could do something like: @car = Car.new(:make => 'GMC') #other processing @car.update_attributes(:model => ...
12
votes
2answers
3k views

validation custom message for rails 3

Rails has introduced new way to validate attributes inside model. When I use validates :title, :presence => true it works but when I try to add a custom message validates :title, :presence ...
12
votes
3answers
3k views

How to mix mongodb and a traditional db in Rails?

I am considering using MongoDB (mongo-mapper) for a portion of my rails application. I am not ready to go whole hog MongoDB because there are too many useful gems that depend on a traditional DB. ...
12
votes
7answers
6k views

Case-insensitive search in Rails model

My product model contains some items Product.first => #<Product id: 10, name: "Blue jeans" > I'm now importing some product parameters from another dataset, but there are inconsistencies ...
12
votes
7answers
3k views

Rails: Elegant way to structure models into subfolders without creating submodules

I have numerous models in my app/models folder. I'd like to clean this folder up a little bit. Move models that belong to each other in subfolders. The problem is that by convention the model class is ...
12
votes
6answers
5k views

accepts_nested_attributes_for child association validation failing

I'm using accepts_nested_attributes_for in one of my Rails models, and I want to save the children after creating the parent. The form works perfectly, but the validation is failing. For simplicity's ...
12
votes
3answers
2k views

Experiences With Active Objects ORM for Java?

I'm looking at ORMs for Java and Active Objects caught my eye. Apparently, it was inspired by Rails' ActiveRecord. Based on what I've read, this approach seems to solve a lot of problems with existing ...
12
votes
4answers
2k views

ActiveRecord find starts with

Really simple question - how do I do a search to find all records where the name starts with a certain string in ActiveRecord. I've seen all sorts of bits all over the internet where verbatim LIKE SQL ...
12
votes
4answers
906 views

What's the best way to implement gmail style “undo” in Rails?

I think it important to have an "undo" method ala gmail when destroying records instead of displaying an annoying popup that says, "Are you sure?". The way that I've implemented this is to have a ...
11
votes
2answers
8k views

MongoDB vs MySQL

I used to build Ruby on Rails apps with MySQL. MongoDB currently become more and more famous and I am now starting to give it a try. The problem is, I don't know the underlying theory of how MongoDB ...
11
votes
6answers
3k views

Rails: How to chain scope queries with OR instead of AND?

I'm using Rails3, ActiveRecord Just wondering how can I chain the scopes with OR statements rather than AND. e.g. Person.where(:name => "John").where(:lastname => "Smith") That normally ...
11
votes
3answers
7k views

Rails extending ActiveRecord::Base

I've done some reading about how to extend ActiveRecord:Base class so my models would have some special methods. What is the easy way to extend it (step by step tutorial). Thx!
11
votes
5answers
252 views

Companies to do code review of crypto in an ActiveRecord / Ruby on Rails webapp?

We have written a Ruby on Rails application that allows a visitor to fill out a form with personal information (name, address & other confidential details), which is stored in a database until the ...
11
votes
1answer
11k views

Rails ActiveRecord :joins with LEFT JOIN instead of INNER JOIN

I have this code User.find(:all, :limit => 10, :joins => :user_points, :select => "users.*, count(user_points.id)", :group => "user_points.user_id") ...

1 2 3 4 5 118