How to solve Chinese garbled characters when using Python to connect to a database

Source: Internet
Author: User

What is garbled Chinese characters when Python connects to the database? We often encounter this problem. In fact, this problem is quite simple. Next, let's take a look at the technical issues related to Python database connection. I hope you will be helpful.

Maybe the charset is not set correctly when you connect to the database.

How to Use python exe?

Assume that there is a Python script named "hello. py" that uses a setup. py script to generate an executable file.

 
 
  1. from distutils.core import setup   
  2. import py2exe   
  3. setup(console=["hello.py"])  

Replace the file name in setup (console = ["..."]) with the script file name to generate the exe. Then, execute this command line

 
 
  1. script:setup.py py2exe  

A dist directory will be generated in the current directory. This directory contains the executable file and other required files, which must be published together.

How can I compile python into pyc and pyo?

 
 
  1. python -m py_compile exaile.py 

Compile to a pyc File

 
 
  1. python -O -m py_compile exaile.py 

The preceding section describes how to connect Python to a database.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.