I am considering buying Pro Active Record: Databases with Ruby and Rails. I am using Rails 3.0.5, and the book's from 2007. Can it's information still be applied, or it's very outdated?
| |||
|
feedback
|
|
While the book is definitely dated, I really found it to be an excellent explanation of ActiveRecord. If you are trying to understand the connection between your models and the database, using callbacks, observers, sweepers and basic relationships (belongs_to, htbtm, has_many :through, etc. and when you should be using them)... IMO, I don`t think a better resource exists. Obviously Rails 3 changes a lot of stuff (the new query syntax, arel), but adjusting to a the new syntax is easy once you have a good grasp of the underlying concepts and I think that is exactly what this book gives you. Those core concepts are the same as in 2007. If you are new to Rails it would still be a great read and I am sure you could get it for next to nothing. | |||
|
feedback
|
|
Rails 2.0 was released in dec 2007. So the book will probably be Rails 1.x, that is to old. To much changed. I would start with the official guides: http://guides.rubyonrails.org/ There are several that cover active record. Next step are some more recent railscasts that cover the subject: http://railscasts.com/tags/2 Pragmatic programmers has a few (paying) screencasts that go more in depth: http://pragprog.com/screencasts/v-rbar/everyday-active-record These are still rails 2.3.x, but that would still be ok. | |||
|
feedback
|