|
|
|
|
|
by jiggy2011
4523 days ago
|
|
The problem is how do we define "from scratch", the common definition seems to be "Whatever I had to do when I started". Even if you throw out of the ORM and go with writing SQL queries by hand, do we need to understand how the database will parse the SQL, how it stores the data on disk and how it executes the query? The main reason to understand SQL when building a web application is really that the ORM doesn't provide a full abstraction due to the differences between the relational model and the OO model. If we could solve that then we could happily never use SQL again. |
|