Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the error caused by PyMySQL when getting data utf- 8

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article introduces how to solve the errors in PyMySQL when obtaining data utf- 8. The content is very detailed. Interested friends can use it for reference. I hope it will be helpful to you.

About 1232 lines of the connections.py file under the PyMySQL package directory

Def _ read_row_from_packet (self, packet): row = [] for encoding, converter in self.converters: data = packet.read_length_coded_string () if data is not None: if encoding is not None: data = data.decode (encoding)

If DEBUG: print ("DEBUG: DATA =", data) if converter is not None: data = converter (data) row.append (data) return tuple (row)

Data = data.decode (encoding)

Change to

Data = data.decode (encoding,'ignore')

About PyMySQL in the acquisition of data utf- 8 errors how to share here, I hope that the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report