Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In HTTP, there are 4 main methods that can perform processing on data that are defined in the REST architecture. This correspondence can also be done with CRUD and SQL:

HTTP/ REST

CRUD

SQL

POST

Create

SELECT

GET

Retrieve

POST INSERT

Create

PUT

Update

UPDATE

DELETE

Delete

DELETE

About this tutorial

Together, we will look at how to create a small application to perform these four operations on our customers.

...