Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Sebastian Nitu
8,616 PointsRoR + SQL - Any Plans?
Hello everyone,
Are there any plans of for future integration of SLQ with RoR? I know it's been said that the PHP track will get this sometime this year, but what about the Ruby on Rails class?
2 Answers

Chad Shores
Courses Plus Student 8,868 PointsConvention over Configuration is the whole point of Rails. You aren't usually interacting directly with the database using SQL or a derivative, but using helpful, intuitive Rails commands to query the database.
Example:
zombie = Zombie.find(3)
finds the row in the zombies table with the id is 3

Drake Ramming
5,373 PointsThe rails guide on Active Record Querying provides the methods to query your database using Active Record as well as the SQL equivalent queries.