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. .. image:: ../img/named-table-1.jpg 3. Repeat this steps for **B** and **C** columns. .. image:: ../img/named-table-2.png .. image:: ../img/named-table-3.png Congrats now you can read a data as json data. .. code-block:: ?action=read&id=123456789&asJSON=true You can add data with json. .. code-block:: json ?action=add { "data": { "name": "Name", "lastname": "Lastname" } } You can change data with json. .. code-block:: json ?action=update&id=123456789 { "data": { "lastname": "New lastname" } }