How to specify InterBase SEP?

Discussion of open issues, suggestions and bugs regarding IBDAC (InterBase Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
upscene
Posts: 306
Joined: Thu 19 Oct 2006 08:13

How to specify InterBase SEP?

Post by upscene » Thu 02 Dec 2021 08:32

Hi,

how does one specify the InterBase System Encryption Password (SEP) when connecting?

With regards,

Martijn

ViktorV
Devart Team
Posts: 3168
Joined: Wed 30 Jul 2014 07:16

Re: How to specify InterBase SEP?

Post by ViktorV » Fri 03 Dec 2021 15:19

Hi Martijn!

Kindly be informed that to solve this problem, you should use the TIBCConnection.Params property with the sys_encrypt_password value: https://docs.devart.com/ibdac/devart.ib ... params.htm

For example:

Code: Select all

   IBCConnection.Params.Add ('sys_encrypt_password = pass');

upscene
Posts: 306
Joined: Thu 19 Oct 2006 08:13

Re: How to specify InterBase SEP?

Post by upscene » Fri 03 Dec 2021 16:04

Thank you Viktor.

I checked the documentation, but couldn't find the parameter name.

Is there a list of all available parameter names and possible options?

Post Reply