A
A
alashgrand2018-06-16 21:07:06
Web development
alashgrand, 2018-06-16 21:07:06

What is a CRUD application and what is it for?

Explain in simple terms, What is a CRUD application and what is it for?

Answer the question

In order to leave comments, you need to log in

5 answer(s)
M
Matvey Pravosudov, 2018-06-16
@oxyberg

via wiki :
Apparently, the application should provide 4 operations with some entity. Very often, frameworks can automatically generate code for such operations.

M
McBernar, 2018-06-16
@McBernar

Almost any website can be called a CRUD application.
CREATE, UPDATE, DELETE - for example, user comments, or filling the site with information by the content manager through the admin panel. READ, respectively, is the most basic operation for obtaining information from the database. We opened the main page - here is READ.

B
big_hasan, 2018-06-17
@big_hasan

To exaggerate and reduce to the private, then CRUD is a set of functions for working with a database. In order not to write cumbersome and inconvenient all sorts of SQL selects with each call to the database, CRUD is used, which is already in modern frameworks. When working with the database, these four operations are applied - creation (create), reading (read), updating (update), deletion (delete). Sometimes beginners are advised to write a CRUD interface on their own (for example, in "bare" PHP), so to speak, invent your own bicycle in order to better understand the language itself and its intricacies.

D
Denis, 2018-06-16
@sidni

So Wikipedia says ...
this is the simplest application that allows you to create, read, update, delete an entity, a classic example, if you describe it very roughly: there is a table of users, and so the crud application allows you to create, read, update, delete a user in the table

V
Vladislav Kadun, 2018-06-17
@ZXZs

CRUD is a database management system. Allows you to create, read, modify and delete tables.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question