UtilTableIsAlias - cDbUpdateFunctionLibrary

To check if a table is an Alias table.


Type: Function


Parameters: Handle hTable

Parameter

Description

hTable

The filelist number


Syntax


Function UtilTableIsAlias Handle hTable Returns Boolean

Call:

Get UtilTableIsAlias MyTable.File_Number to bIsAlias



Description

Checks if a table is an Alias file. Returns True if it is. An Alias file/table is a filelist number that share the same Physical filename but which Logical name is different.



Example


Procedure OnClick

    Boolean bOK 

   

    Get UtilTableIsAlias OrderHe2.File_Number to bOK

End_Procedure