command cdb_update pInputA


Summary

This command makes changes to an existing record.

Inputs

* optional parameter.

Additional Requirements

API Version

Examples

local tInputA

#Table name: clients
#Keys: firstName, lastName, age, income

#Set up
put "clients" into tInputA["cdbTableName"]
put "cloud" into tInputA["cdbTarget"]   
put "123456abcdef" into tInputA["cdbRecordID"]

#One or more keys
put "Tom" into tInputA["firstName"]
put "Jerry" into tInputA["lastName"]
put "31" into tInputA["age"]
put "31000" into tInputA["income"]

cdb_update tInputA