Versions Compared

Key

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

...

See also

MatReadOpenReadWriteXlate()

Example

Code Block
/* Column 2 of rows 100 through 106 is read into cname, and returned to the caller. */
Open "CUSTOMERS" To CUSTOMER_TABLE Else
  status = Set_FSError()
  Return
End
For I = 100 To 106
  ReadV cname From CUSTOMER_TABLE, I, 2 Then
    /* process cname */
  End
Next I
End