Data.DB.IDBSession.RemovePassword

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RemovePassword(const APassword: string);

C++

virtual void __fastcall RemovePassword(const System::UnicodeString APassword) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Data.DB.pas
Data.DB.hpp
Data.DB IDBSession

Description

Removes a specified password from the session.

Use RemovePassword delete a specified password from the session. After a call to RemovePassword, any password-protected tables or databases that require the specified password can't be reopened until the password is supplied again by a call to the AddPassword method.

APassword is the password to remove. It is a string that was previously supplied by the AddPassword method.

See Also