InterviewSolution
Saved Bookmarks
| 1. |
What is CRUD? |
|
Answer» The most common task in web application development is to write CREATE, READ, update and delete functionality (CRUD) for each table. It refers to the set of common operations that are used in web applications to interact with data from the database. It provides a CRUD interface that allows users to create, read, update or delete data in the application database. DJANGO helps us with its simplified IMPLEMENTATION for CRUD operations using Function-Based views and class-based Views.
|
|