Versions Compared

Key

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

...

Code Block
/* Writes row 1 to the CAR_ORDERS table.  
The ORDER_NUM is 30, the SUPP_NO is B10, the DATE_ORD is 10/20/90, and the TOTAL_PRICE is $23.50.  
The row is unlocked after the write operation. */
 
columnvaluelist = "30":@FM:"B10":@FM:"10/20/90":@FM:"23.50"
 
Write_Row("CAR_ORDERS", "1", columnvaluelist, 2)
 
if Get_Status(ErrCodes) then
  GoSub ErrorHandling
end