Returns a list of tables
Creates the table
Deletes the table
Returns the complete table as a json object if the table exists
Returns a list of columns, with column counts in the table if the table exists
Returns the column name / value pairs for the first record in every column in the table (row 0) and removes these records from the table
Returns the column name / value pairs for every column in the table for the nominated row id (starting from 0) and removes these records from the table
With post body containing the column name / value pairs, will append values to last row in each column, creating columns that don't exist.
Example post data:
{
"<column name>": "<value>",
"<column name>": "<value>",
"<column name>": "<value>"
}
if you need to keep the column data together for a row, then it's advised that you do not use api features that manipulate individual columns.
Returns a list of columns, with column counts in the table if the table exists
Creates the column
Deletes the column
Retrieves the value from the first row in the column and removes it from the table
Retrieves a specific row's value in the column based on it's id and removes it from the table
Retrieves all the values in the column, does not remove any values
Appends the value to the last row in the column