Python Forum
python with mysql utf8 error
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
python with mysql utf8 error
#1
I have a problem on my raspberry with mysql (mariadb). When I execute this simple programm it shows this error. The database is made in phpmyadmin (generated password : HV8AoxbZ2H44uNgX).

import mysql.connector

try:
db = mysql.connector.connect(host = "localhost", database = "dobot", user = "dobot", password = "HV8AoxbZ2H44uNgX")


if db.is_connected():
print("Connected to MySQL database.")
#return db
except mysql.connector.Error as e:
print ("Error while connecting to MySQL", e)
Error:
pi@raspberrypi:~/FTP/files/demo-magician-python-64-master $ python database.py Error while connecting to MySQL Character set 'utf8' unsupported
Whats is wrong with my settings?
Larz60+ write Jul-31-2022, 12:48 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Fixed for you this time. Please use bbcode tags on future posts
Reply
#2
utf8 is standard since python 3 release.
Please always show entire unmodified error traceback as it shows important program flow information.
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020