Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
/* Writes the value 2A100 to the ORDER_NUM column column 
and the value B10 to the SUPP_NO column in row 1 of the CAR_ORDERS table. 
The row is unlocked after the write operation. */
 
columnlist = "ORDER_NUM":@FM:"SUPP_NO"
columnvaluelist = "2A100":@FM:"B10"
 
Write_Column("CAR_ORDERS", 1, columnlist, columnvaluelist, 2)