Named TableΒΆ

We can use JSON support in reading, adding and updating by creating named columns.

  1. First click A column.

  2. Click text box and rename.

../_images/named-table-1.jpg
  1. Repeat this steps for B and C columns.

../_images/named-table-2.png ../_images/named-table-3.png

Congrats now you can read a data as json data.

?action=read&id=123456789&asJSON=true

You can add data with json.

?action=add

{
  "data": {
    "name": "Name",
    "lastname": "Lastname"
  }
}

You can change data with json.

?action=update&id=123456789

{
  "data": {
    "lastname": "New lastname"
  }
}