Connect python to MySQL

Source: Internet
Author: User
Import  Mysqldb  #  Case Sensitive !!  
# Establish a connection with the database system
Conn = Mysqldb. Connect (host =' Localhost', user = 'Root', passwd = 'Smile ', DB = 'Test ')
# Get operation cursor
Cursor = Conn. cursor ()
# Run SQL to create a database.
Cursor.exe cute (""" Create Database Python """ )
Cursor.exe cute ('create table test ')
# Insert parameter value
Values = []
For I In Range ( 20 ):
Values. append (I, 'Hello mysqldb, I am recoder' + STR (I )))
# Insert multiple records
Cursor.exe cute.pdf (''' Insert into test values (% s, % s )''' , Values );
# Submit changes
Conn. Commit ()

Count = Cursor.exe cute ('select * From Test ')
Results = Cursor. fectch.pdf ( 5 )
# Reset the cursor position. The value 0 indicates the offset. mode = absolute | relative is used. The default value is relative,
Cursor. Scroll (0, Mode = 'Abort ')
Results = Cursor. fetchall ()
# Close connection and release resources
Cursor. Close ();

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.