EsbRemoveAlias

Permanently removes an alias table from the active database.

Syntax

EsbRemoveAlias (hCtx, AltName)
ByVal hCtx    As Long
ByVal AltName As String
ParameterDescription

hCtx

VB API context handle.

AltName

Name of an alias table to remove.

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 EsbRemoveAlias Lib "ESBAPIN" (ByVal hCtx As Long, ByVal Name As String) As Long

Sub ESB_RemoveAlias ()
   Dim sts As Long
   Dim Name As String   Name = "TestAlias"   '*************
   ' Remove Alias
   '*************
   sts = EsbRemoveAlias (hCtx, Name)
End Sub

See Also