databases icon indicating copy to clipboard operation
databases copied to clipboard

Password containing `/` cannot be used (MySQL)

Open yangsongbai1 opened this issue 2 years ago • 1 comments

mysql://root:123456../@myhost:3306/mydb

ValueError: Port could not be cast to integer value as '123456..'

yangsongbai1 avatar May 06 '23 02:05 yangsongbai1

@yangsongbai1 you have to escape special character e.g. with urllib.parse.quote_plus

Image

This code works for me fine :)

Sebcio03 avatar May 04 '25 23:05 Sebcio03