DEV Community

Ariful Haque
Ariful Haque

Posted on

Some backend features used in web

CRUD Operation

In computer programming, crud is a very commonly used operation. The acronym, CRUD means create, read, update and delete. These basic four steps are used to operate on data in a storage. Those functions are executed in a relational database application.
It helps a user to read the data, edit that date, add the data and even he or she can delete it. Those functions can be modified by taking data from a service. It is mainly data-oriented operations.
Most of the applications, android or iphone app, crud operation is commonly used. Every programmer around the globe must need to use crud operation for their projects. A crud application is used to take and send data to the database. The procedures of crud operation are given.

  • CREATE procedures: It inserts data to the database table row..
  • READ procedures: It gets data from the database.
  • UPDATE procedures: It executes when the data is needed to change something in it.
  • DELETE procedures: This performs nothing but to delete any data from the database table.

Top comments (0)