Versions Compared

Key

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

...

Note: All parameters are passed by reference, not by value.

See also

List_VolumeAttach_TableCopy_Table

Example

Code Block
/* The alias "BACKUP" is used for the CAR_PARTS table in the volume E:\DAT in the database INVENTORY. */
 
Declare Subroutine Alias_Table, Set_Status, Msg
Declare Function Get_Status
 
Alias_Table ("E:\DAT", "INVENTORY", "CAR_PARTS", "BACKUP")
if Get_Status() then
  Msg(@window, "Unable to alias the CAR_PARTS table.")
  Set_Status (0)
end