hmily3913 commented on issue #29497: URL: https://github.com/apache/superset/issues/29497#issuecomment-2215865083
> > > @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:password@10.100.20.30:1433/TEST > ``` > > However, if the password contains an "@", you should replace it. Instead of writing it like this: > > ``` > mssql+pymssql://sa:hello@1@10.100.20.30:1433/TEST > ``` > > You should write it like this: > > ``` > mssql+pymssql://sa:hello%401@10.100.20.30:1433/TEST > ``` thx,password dont contain any special characters -- 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: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org