Delphi Examples: DbiDropPassword

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiDropPassword

Return to chapter overview

Drop a password.

Delphi users should use TSession.RemovePassword method rather than directly calling dbiDropPassword. The method TSession.RemovePassword is defined as:

 procedure RemovePassword(const Password: string);

The following code removes a password called "Hip Hop" from TSession Session:

Session.RemovePassword('Hip Hop');