Closed
Description
According to the documentation(http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html) the mysqli driver will allow any of the real_connect options(http://php.net/manual/en/mysqli.real-connect.php). However if you specify MYSQLI_CLIENT_SSL it doesn't get passed to the real connect call(
) it would appear. If I var_dump $flags right before it is called then I get NULL.If by chance I'm doing something wrong my my driverOptions please let me know. I've tried driver options with and quotes. I've also tried giving it a value of T or TRUE, but DBAL says that is an unsupported option
$connectionParams = [ 'driver' => 'mysqli', 'host' => 'remotehostname', 'dbname' => 'targetdb', 'user' => 'username', 'password' => 'password', 'driverOptions' => [MYSQLI_CLIENT_SSL] ];