CRUD - what is it in programming (crud)
CRUD (Create Read Update Delete) is an abbreviation for 4 data manipulation operations:
- Create -- Create
- Read -- Read
- Update -- Editing
- Delete -- Delete
CRUD Examples
Often, when working with data within the framework of MVC, so-called crud controllers are considered - usually, these are classes that perform 4 specified operations for an entity (as a data store, using, for example, a DBMS ).