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
{{ message }}
This repository was archived by the owner on Oct 8, 2018. It is now read-only.
Suppose I can connect to sql from the command line with:
mysql [email protected] -hfakeapp-mysql-server.mysql.database.azure.com -p'p@ssword'
This is an issue because when using Azure Mysql, the username always contains @hostname (see here.
The problem is that when you do u := clean.String(), it is escaping everything, but the mysql driver expects the username and password to come through unescaped. I assume the other drivers would as well.
I'll put in a pull request shortly.
The text was updated successfully, but these errors were encountered:
Suppose I can connect to sql from the command line with:
This is an issue because when using Azure Mysql, the username always contains @hostname (see here.
The problem is that when you do
u := clean.String()
, it is escaping everything, but the mysql driver expects the username and password to come through unescaped. I assume the other drivers would as well.I'll put in a pull request shortly.
The text was updated successfully, but these errors were encountered: