-
Notifications
You must be signed in to change notification settings - Fork 19
apimigrationupdaterecord
Troy Murray edited this page Sep 19, 2011
·
2 revisions
Updates a record in a table.
updateRecord(table[,where][[,columnName=columnValue]]);
Parameter | Type | Required | Default | Description |
table | string | Yes | Name of table to update records | |
where | string | No | Where condition | |
one or more columnNames | string | No | Use column name as argument name and value |
updateRecord(table='members',where='id=1',status='Active');