in reply to Re: DBI:mysql connection over SSL fails
in thread DBI:mysql connection over SSL fails

Thank you, Ken.

Unfortunately, the syntax change to use "qw" didn't help.

On the '_SSL_USER_' and '_SSL_USER_PWD_' values, I shouldn't have problems as they are enclosed on single quotes, therefore shouldn't be evaluated. Anyway, I escaped whatever chars could cause problems with no luck.

Cheers,

André

  • Comment on Re^2: DBI:mysql connection over SSL fails

Replies are listed 'Best First'.
Re^3: DBI:mysql connection over SSL fails
by kcott (Archbishop) on May 10, 2014 at 00:26 UTC
    "Unfortunately, the syntax change to use "qw" didn't help."

    Just checking that you did notice that involved more than just qw{}.

    joining without intervening whitespace was the main point; qw{} was of lesser importance and could've been implemented in other ways.

    join('', 'DBI:...', qw{...})

    -- Ken

      Yes, I noticed that, thanks for the suggestion. Unfortunately, the result remains the same. How do I debug from here? Did anyone have success using DBD:mysql over SSL at all?