Default connection information is put here.
pass show databases; to mysql server.
pass show tables in <dbname>; to mysql server.
'GET', 'PUT', 'POST', 'DELETE' in RESTful APIs correspond to 'select', "update", "insert", "delete" in Relational databases respectively.
use the helper function from data_table_adpaptor
Primary key are the last path parameter.
The desired fields are parsed from the query parameters.
When dealing with "PUT" method, the program will read new values from request body.
The searching template for where-clause in the select statement is parsed from the query parameters.
Pagination is implemented using limt and offset keywords in SQL.