Python3 connecting MySQL

Source: Internet
Author: User

1. Install pymysql;

The 2.mac version is as follows:

1 #-*-coding:utf-8-*-2 ImportPymysql3# The password I use * mosaic wow haha4conn = Pymysql.connect (host ='127.0.0.1', Unix_socket ='/tmp/mysql.sock', user ='Root', password ='******', db ='MySQL', CharSet ='utf8s')5Cur =conn.cursor ()6Cur.execute ("Use MySQL")7 8Cur.execute ("SELECT * from user")9 Print(Cur.fetchone ())Ten cur.close () OneConn.close ()

3. The Windows edition is as follows:

Note: Write int instead of STR after 1.port;

2. Add charset= ' UTF8 ' to ensure that the detected Chinese characters can be displayed normally;

1 #-*-coding:utf-8-*-2 ImportPymysql3 4conn = Pymysql.connect (host ='XXXXXX', port = 1234, user ='****', password ='*****', db ='xxxx', CharSet ='UTF8')5Cur =conn.cursor ()6Cur.execute ("Use xxxx")7 8Cur.execute ("SELECT * from xxxx where id = 1039")9 Print(Cur.fetchone ())Ten cur.close () OneConn.close ()

Python3 connecting MySQL

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.