Delphi Examples: DbiDeleteAlias

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiDeleteAlias

Return to chapter overview

Delete an existing index from the configuration file of the current session:

 

procedure DoDbiDeleteAlias(AliasName: string);

begin

 Check(DbiDeleteAlias(nil, PChar(AliasName)));

end;

 

// Sample input:

 DoDbiDeleteAlias('SomeAlias');