Habeeb556 commented on issue #29497: URL: https://github.com/apache/superset/issues/29497#issuecomment-2213239067
> > @hmily3913 The password contains "@", you can escape the "@" character using "%40" instead. > > After modification, prompt > > > 错误: (sqlalchemy_uri) Invalid connection string, a valid string usually follows: backend+driver://user:password@database-host/database-name @hmily3913 The standard connection string is as follows: ``` mssql+pymssql://sa:[email protected]:1433/TEST ``` However, if the password contains an "@", you should replace it. Instead of writing it like this: ``` mssql+pymssql://sa:hello@[email protected]:1433/TEST ``` You should write it like this: ``` mssql+pymssql://sa:hello%[email protected]:1433/TEST ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
