IBX.IBDatabase.TIBDatabase.ColumnEncryptionPassword

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ColumnEncryptionPassword(password : String;  tablename : string; column : String);

C++

void __fastcall ColumnEncryptionPassword(System::UnicodeString password, System::UnicodeString tablename, System::UnicodeString column);

Properties

Type Visibility Source Unit Parent
procedure
function
public
IBX.IBDatabase.pas
IBX.IBDatabase.hpp
IBX.IBDatabase TIBDatabase

Description

Sets the encryption password for a column in the database, for the current connection. Required for all new connections.

  • password represents the encryption password.
  • column represents the column for which the encryption password is set.
  • tablename represents the table which contains the column.

If tablename or column are empty or the connection is not active, an exception is raised.

Disconnecting or reconnecting to the database resets the encryption password.

For full information about InterBase encryption, see the InterBase Data Definition Guide.

See Also