You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a password with the following special characters $;{#]@. I have successfully encoded this password in the past to work with the DSN format. I first had to urlencode() the raw password, then because of the usage of resolve: I had to additionally escape the % characters. For example, the $ is encoded to %24 which is finally escaped as %%24.
Here is the example DSN format that is working where the fake raw password would be a$b;cdefg{hijkl#]mno@:
I tried getting rid of the resolve: for the password parameter. I tested that the password worked on the command line. I eventually gave up and changed the password to not contain any special characters.
The text was updated successfully, but these errors were encountered:
I have a password with the following special characters
$;{#]@
. I have successfully encoded this password in the past to work with the DSN format. I first had tourlencode()
the raw password, then because of the usage ofresolve:
I had to additionally escape the%
characters. For example, the$
is encoded to%24
which is finally escaped as%%24
.Here is the example DSN format that is working where the fake raw password would be
a$b;cdefg{hijkl#]mno@
:I have since started moving towards the separate parameters:
but I was struggling with how to set the value of
DATABASE_PASSWORD
. I tried the following:I tried getting rid of the
resolve:
for the password parameter. I tested that the password worked on the command line. I eventually gave up and changed the password to not contain any special characters.The text was updated successfully, but these errors were encountered: