Connect Python to the MySQL database and pythonmysql Database

Source: Internet
Author: User

Connect Python to the MySQL database and pythonmysql Database

 Connect to the MySQL database

Source code:

Import MySQLdb # import the MySQLdb Module

Print 'connect to the database </br>'

# Connect to the MySQL database

# If 'localhost' is entered in the host field and an error is returned, try '2017. 0.0.1'

Db = MySQLdb. connect (host = '127. 0.0.1 ', user = 'root', passwd = 'Michael', db = 'test ')

# Get database cursor get the database cursor

Cur = db. cursor ()

# Execute the SQL statement

R=cur.exe cute ('select * from people ')

# Get query results get all the results selected

R = cur. fetchall ()

# Output query results

Print 'output database query result: </br>'

Print r

# Close the cursor

Cur. close ()

# Close database connection close the database connection

Db. close ()

Appendix: differences between raw_input and input in Python

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.