EsbClearAliases

Permanently removes all alias tables for the active database.

Syntax

EsbClearAliases (hCtx)
ByVal hCtx As Long
ParameterDescription

hCtx

VB API context handle.

Notes

Return Value

None.

Access

This function requires the caller to have access to the database, and to have selected it as their active database using EsbSetActive().

Example

Declare Function EsbClearAliases Lib "ESBAPIN" (ByVal hCtx As Long) As Long

Sub ESB_ClearAliases ()
   Dim sts As Long   '***************
   ' Remove Aliases
   '***************
   sts = EsbClearAliases (hCtx)
End Sub

See Also