Skip to content

apimigrationupdaterecord

Troy Murray edited this page Sep 19, 2011 · 2 revisions

updateRecord()

Usage

Updates a record in a table.

Function Syntax

updateRecord(table[,where][[,columnName=columnValue]]);

Parameters

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

Examples

updateRecord(table='members',where='id=1',status='Active');
Clone this wiki locally