Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been considering switching from using PHP to Ruby on Rails for my web projects and the one thing I'm most concerned about is the use of the ActiveRecord for Rails. It seems to me like using the ActiveRecord is very strongly encouraged and writing straight SQL seems frowned upon. After looking at several projects I have yet to see one that actually uses SQL in it.

I'm not sold on the ActiveRecord yet, mostly because it requires learning something that doesn't seem as powerful as straight SQL, e.g. is there an easy way to do a nested query with a group by and having clause with the ActiveRecord or will I have to jump through hoops to do so?

Has anyone ever used Rails without the ActiveRecord? If so, what was your experience doing so?

share|improve this question
2  
Could you provide us with the query you're using as an example? – Ryan Bigg Dec 18 '10 at 10:54
I'm not talking about any particular query, but just more complex ones in general. – adaykin Dec 19 '10 at 4:43
1  
The big advantage using the ActiveRecord, or Sequel or Datamapper ORMs is portability. If you use the ORM you can often change the connection DSN or URL and work on a different DBM without changing your code. Writing the SQL directly tempts us to use DBM-specific commands which reduce portability. The ORMS give us the flexibility to decide when to use SQL directly or rely on their ability to generate good code. – the Tin Man Dec 19 '10 at 22:00

5 Answers

up vote 7 down vote accepted

If you don't want to use ActiveRecord you don't have to and can define pure sql in your models if you so wish. find_by_sql('select whatever')

share|improve this answer
3  
Thanks for the accept but Ryan's answer is far more complete than mine and very good advice. – mark Dec 19 '10 at 7:57

Three words: Here be dragons.

By going off the path of doing things "The Rails Way", then you will encounter foes of unimaginable power and cunning. At first, you will think "OH HO HO I am doing it my way, aren't I awesome?". Then you'll grow tired. Exhausted even. Forlornly, during your struggles, you'll look at all the cool gems that are using Active Record and wonder why you chose to venture down a path so fraught with doom and gloom it would make Chuck Norris shit his pants.

Please, do not stray from Active Record. It is only here to help you, not hinder you. If you wish to write your own queries then there is a find_by_sql method, or an even lower Model.connection.execute method. However, these should only be used, much like nuclear weaponry, in times of exceptionally dire needs.

If you don't want to use Active Record at all, then I would encourage you to look at either DataMapper or Mongoid.

DataMapper provides much of the same functionality as Active Record and some have been known to prefer the syntax. As a bit of trivia: it was one of the first gems to be compatible with Rails 3.

Mongoid on the other hand is for MongoDB databases, which some other people also fancy.

I beg again: do not stray from the beaten path, lest you want a beating yourself.

share|improve this answer
2  
Seeing how I see Ryan Bigg's name every day (from helping people) at 3am from Rails-Core mailings, I suggest you head his words. :) – EnabrenTane Dec 24 '10 at 18:57
Typo police: s/head/heed – Jon L. Dec 16 '12 at 1:30

Does it ever occur to people that maybe someone is building an app that needs to connect to an existing database, that maybe already has tables and data in it? Every tutorial I see on rails, assumes people have nothing. No app, No other servers, and no life in general.

share|improve this answer
1  
Umm... did it occur to you that a huge number of Rails apps are working on existing legacy databases, and that using migrations to create and modify the tables is optional? It's a lot easier to work with a table Rails helped generate because Rails makes some assumptions about what fields are available and the naming of tables and fields, but it's flexible enough to let us bend it to fit our environment. – the Tin Man Dec 19 '10 at 21:53
Rails and ActiveRecord have been able to work with legacy databases right from the start. Composite keys were a sticky situation in the early days, but I'm not sure if they've cleaned that up since. Either way, any ORM worth its salt will not require you to create a new DB from the ground up. It's just a wrapper around the DB, not what defines it. – MattC Apr 23 '11 at 15:03

You could use DataMapper. After writing Rails apps and tools for over a year I would -strongly- recommend using ActiveRecord. Even if you only ever use Model.find_by_sql("error prone hand written sql using fields that may change over time") instead of Model.find_by_last_name("Smith")

Many smart people have spent many hours working on ActiveRecord and ARL. I beg that you leverage their work.

share|improve this answer

There must be a good reason for other people to use ORMs in their Rails apps. :)

Especially with Rails 3, ORMs are pluggable - you can easily use DataMapper, or Sequel instead of ActiveRecord.

In any case, models are important (and very powerful) part of any MVC framework. Lot of business logic is placed within models - "fat models" is kind of recommended way of development.

Another good point about existing ORMs is that they actually allow (but not encourage) you to write SQL by hand - you could freely write all your queries by hand if you like. But even then, I'd recommend that you leave your queries parametrized and let the library interpolate your parameters (you do that in PHP as well, don't you)?

share|improve this answer
Yes, I do parametrize queries in PHP...but most PHP frameworks I've used give me flexibility to write queries using ActiveRecord or straight SQL. I'm more worried about the ActiveRecord not being able to do some of the more advanced things I want and then being stuck with using that particular paradigm. – adaykin Dec 19 '10 at 4:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.