zoho@0.3.1
addRow
addRow(db, table, rowData) ⇒ Operation
To add a row data to a database table
Kind: global function
Param | Type | Description |
---|---|---|
db | string | Database |
table | string | Database table |
rowData | object | row data to be added into the database |
Example
addRow(
'testing_openfn',
'Customers',
fields(field('Subject', dataValue('formId')), field('Status', 'Closed'))
);