Skip to main content

core.table.insert_row

Insert a row into a table.

Inputs

object
required
The data to insert into the row.
string
required
The table to insert the row into.
boolean
If true, update the row if it already exists (based on primary key).Default: false.

Examples

Insert, update, and delete rows

core.table.insert_rows

Insert multiple rows into a table.

Inputs

array[object]
required
The list of data to insert into the table.
string
required
The table to insert the rows into.
boolean
If true, update the rows if they already exist (based on primary key).Default: false.

Examples

Insert, update, and delete rows

core.table.update_row

Update a row in a table.

Inputs

object
required
The new data for the row.
string
required
The ID of the row to update.
string
required
The table to update the row in.

Examples

Insert, update, and delete rows

core.table.delete_row

Delete a row from a table.

Inputs

string
required
The ID of the row to delete.
string
required
The table to delete the row from.

Examples

Insert, update, and delete rows