Sets options for SSL connection (encrypted protocol). Syntax: property SSLProperties: TSSLProperties Description: The value of ConnectOptions is usually empty set [], but it can be set to a combination of the following flags in very special circumstances: Containing the X.509 certificate. Containing the Key for the X.509 certificate. Containing the Key for the authority certificate. The SSL library file. The SSL cryptography library file. The cipher suite list. TLS protocol version.
To force client library to use SSL encryption, you should add coSSL option to ConnectOptions property value . To make sure that SSL encryption is really performed, please check IsSSLUsed property value after connection is established.
Don't forget to add MySQLTypes to your uses section. See also: ConnectOptions, IsSSLUsed properties |