CRUD - Create, Retrieve, Update, Delete
- Thursday, 29 August 2013, 10:28
- Contributed by: remy
- Views: 7,686

The CRUD pattern is most basic to information systems. It is a obvious thought that any file should be equipped with a CRUD based maintenance program. That is a program, or a collection of programs that can Add a record to a file (Create), Read that record back (Retrieve), Update some fields (Update) and Delete a record permanently (Delete).
The pattern is quite suited for an automated approach. Besides the field names of the file are different for any file, there is no change in the logic of the program.