Scaffolding, what is it? Is it a Rails-only thing?
|
feedback
|
|
From Wikipedia:
| ||||
feedback
|
|
Scaffolding generally refers to a quickly set up skeleton for an app. It's not rails-only since other platforms have it as well. It's also not generally meant to be a "final" system; merely the first, smallest way to do it. | |||
|
feedback
|
|
It is not a rails only term although I think it originated there (at least that is where I first heard it.) Scaffolding is a framework that allows you to do basic CRUD operations against your database with little or no code. Generally, you then go through and add the code to manage the data the way you want replacing the scaffolding. It is generally only intended to get you up and running quickly. | |||
|
feedback
|
|
Scafolding is usually some type of code generation where you point it at a database, and the technology creates basic CRUD (create, read, update, delete) screens. | |||
|
feedback
|