SQL injection in Python

Source: Internet
Author: User
Tags sql injection

Connect database operations before Charu

#Coding:utf-8 fromPymysqlImportConnect#connecting to a databaseconn=Connect (Host='localhost', Port= 3306, the user='Root', passwd='Root', DB='CA',        )#Create an action cursor and create an action link for MySQLA=conn.cursor ()#set the character set to Utf-8A.execute ('Set names UTF8') method One format mode SQL='INSERT INTO TB1 (Name,age,phone) VALUES ({0},{1},{2})'. Format ("7", 54,"1566456465") a.execute (SQL)

Method One
Format mode
Sql= ' INSERT into TB1 (Name,age,phone) VALUES ({0},{1},{2}) '. Format ("7", 54, "1566456465")
A.execute (SQL)

Method Two
The original replacement
Sql= ' INSERT into TB1 (Name,age,phone) VALUES (%s,%s,%s) '% ("7", "54", "1555566")
A.execute (SQL)

Method Three
Using the Execute
Sql= ' INSERT into TB1 (Name,age,phone) VALUES (%s,%s,%s) '
Parm= (7,54,1566456465)
A.execute (Sql,parm)

Note that in the Execute function, the amount of changes in SQL is replaced with parm strings

SQL injection 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.