Pymysql 설치중 오류 ('NoneType' object has no attribute 'encoding', object supporting the buffer API required)

YU NA Joe·2022년 6월 5일
0

pymysql 설치하다가 오류난것들

1.AttributeError: 'NoneType' object has no attribute 'encoding'

conn = pymysql.connect(host="localhost", user="root", password=1234,
                       db="practice", charset="utf8")
                       
- password를 '1234'가 아닌 1234로 썼더니 오류가 났음
                       
2. pymysql TypeError: object supporting the buffer API required

conn = pymysql.connect(host="localhost", user="root", password=1234,
                       db="practice", charset="utf8")
                       
- charset을 utf8이 아닌 utf-8로 썼다니 오류가 났음

0개의 댓글