If my database user’s password has [email removed] symbol in it then the connection will fail.
datasource db {
provider = "mysql"
url = "mysql://root:P@ssw0rd@localhost:3306/testApp"
}
A database connection issue occurs when the database user’s password contains an [email removed] symbol. The problem appears to be related to URL parsing in the connection string format mysql://root:P@ssw0rd@localhost:3306/testdb.
Technical Context:
mysql://username:password@host:port/databaseCurrent Status:
If my database user’s password has [email removed] symbol in it then the connection will fail.
datasource db {
provider = "mysql"
url = "mysql://root:P@ssw0rd@localhost:3306/testApp"
}