FUNCTION Edit ( Table AS String [ , Request AS String, Arguments AS , ... ] ) AS ResultReturns a read/write Result object used for editing records in the specified table.
DIM hResult AS Result DIM sCriteria AS String DIM iParemeter AS Integer ' Same as Select * from tblDEFAULT where id = [parameter value] sCriteria = "id = &1" iParameter = 1012 $hConn.Begin hResult = $hConn.Edit("tblDEFAULT", sCriteria, iParameter) ' Set field value hResult!Name = "Mr Smith" ' Update the value hResult.Update $hConn.Commit