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
In a URL, user/password must be URL-encoded if they contain special characters.
Let's say the password is foo@bar: the corresponding string is foo%40bar.
So if we use a connection string to open a connection, the user/password must be URL-decoded otherwise an error occurs:
mariadb.createConnection("mariadb://user:foo%40bar@localhost:3306/db");
# Error: (conn=9, no: 1045, SQLState: 28000) Access denied for user 'user'@'localhost' (using password: YES)
In a URL, user/password must be URL-encoded if they contain special characters.
Let's say the password is
foo@bar: the corresponding string isfoo%40bar.So if we use a connection string to open a connection, the user/password must be URL-decoded otherwise an error occurs:
See: https://github.com/mariadb-corporation/mariadb-connector-nodejs/blob/master/lib/config/connection-options.js#L210
Credentials are passed as-is.
The text was updated successfully, but these errors were encountered: