Rails and Databases
Get familiar with the connection between Rails and SQL
We'll cover the following...
The examples in this course were written using SQLite 3 (version 3.22.0 or thereabouts). If you want to follow along with our code, it’s probably simplest if you use SQLite 3 as well. If you decide to use something else, it won’t be a major problem. You may have to make minor adjustments to any explicit SQL in our code, but Rails pretty much eliminates database-specific SQL from applications.
Connection with database
If you want to ...