Difficulty Connecting Python3 To A MariaDB - Take 1
See related question at: Difficulty connecting python3 to a mariadb - take2 I have Python2.7 and python3 installed on an OpenSuse (Leap 15.1) and I have I have MariaDB installed un
Solution 1:
According to the docs, you've misnamed some of your parameters. That might be confusing it into thinking you're giving it a tuple, although not sure why. Should be passwd
and db
https://mysqlclient.readthedocs.io/user_guide.html#connection-objects
Post a Comment for "Difficulty Connecting Python3 To A MariaDB - Take 1"