Replies: 1 comment
-
@acikgozb you can use python for that from urllib.parse import quote
print(quote("your password here")) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey there, first of all thanks for the plugin.
I really want to switch from Jetbrains' DataGrip to this plugin, and currently the major blocker for me is the special characters in the password.
I have a password that contains
@
. When I try to connect the DB (mssql), I get this error:c.GetStructure: c.db.Conn: lookup rA: no such host
I believe the reason why it prints out
rA
is that these are the next 2 characters in the password after@
.However I'm not so sure about this.
So, is there a way to escape this character inside the password since it's also used before the host as well?
Beta Was this translation helpful? Give feedback.
All reactions