python连接sql数据库_python连接SQL数据库

前言

上次通过学习,懂得了如何通过不同的对象来定位页面的元素(id,class_name,tag_name,xpath,css等),可以实现模拟点击的功能。当然,这只是初期的web自动化的一点小成绩。当你觉得这些都应用的差不多的情况下,你就会不自觉地想,如何通过连接数据库,来对比页面数据与数据库中的是否一致呢?下面就一块学习下pyhon如何连接SQL数据库,并对查询出的数据进行操作,以获得你最终想要的数据的。

一、安装

PyMySQL是python中操作MySQL的模块(库),本文的python版本:3.6 PyMySQL版本:0.8.0

在命令行输入:pip install PyMySQL

二、使用操作

1、执行SQL

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

#!/usr/bin/env pytho

# -*- coding:utf-8 -*-

import pymysql

# 创建连接

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1', charset='utf8')

# 创建游标

cursor= conn.cursor()

# 执行SQL,并返回收影响行数

effect_row= cursor.execute("select * from tb7")

# 执行SQL,并返回受影响行数

#effect_row = cursor.execute("update tb7 set pass = '123' where nid = %s", (11,))

# 执行SQL,并返回受影响行数,执行多次

#effect_row = cursor.executemany("insert into tb7(user,pass,licnese)values(%s,%s,%s)", [("u1","u1pass","11111"),("u2","u2pass","22222")])

# 提交,不然无法保存新建或者修改的数据

conn.commit()

# 关闭游标

cursor.close()

# 关闭连接

conn.close()

注意:存在中文的时候,连接需要添加charset='utf8',否则中文显示乱码。

2、获取查询数据

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

cursor= conn.cursor()

cursor.execute("select * from tb7")

# 获取剩余结果的第一行数据

row_1= cursor.fetchone()

print row_1

# 获取剩余结果前n行数据

# row_2 = cursor.fetchmany(3)

# 获取剩余结果所有数据

# row_3 = cursor.fetchall()

conn.commit()

cursor.close()

conn.close()

3、获取新创建数据自增ID

可以获取到最新自增的ID,也就是最后插入的一条数据ID

1

2

3

4

5

6

7

8

9

10

11

12

13

14

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

cursor= conn.cursor()

effect_row= cursor.executemany("insert into tb7(user,pass,licnese)values(%s,%s,%s)", [("u3","u3pass","11113"),("u4","u4pass","22224")])

conn.commit()

cursor.close()

conn.close()

#获取自增id

new_id= cursor.lastrowid

print new_id

4、移动游标

操作都是靠游标,那对游标的控制也是必须的

1

2

3

4

注:在fetch数据时按照顺序进行,可以使用cursor.scroll(num,mode)来移动游标位置,如:

cursor.scroll(1,mode='relative')# 相对当前位置移动

cursor.scroll(2,mode='absolute')# 相对绝对位置移动

5、fetch数据类型

关于默认获取的数据是元祖类型,如果想要或者字典类型的数据,即:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

#游标设置为字典类型

cursor= conn.cursor(cursor=pymysql.cursors.DictCursor)

cursor.execute("select * from tb7")

row_1= cursor.fetchone()

print row_1#{u'licnese': 213, u'user': '123', u'nid': 10, u'pass': '213'}

conn.commit()

cursor.close()

conn.close()

6、调用存储过程

a、调用无参存储过程

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

#游标设置为字典类型

cursor= conn.cursor(cursor=pymysql.cursors.DictCursor)

#无参数存储过程

cursor.callproc('p2')#等价于cursor.execute("call p2()")

row_1= cursor.fetchone()

print row_1

conn.commit()

cursor.close()

conn.close()

b、调用有参存储过程

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

cursor= conn.cursor(cursor=pymysql.cursors.DictCursor)

cursor.callproc('p1', args=(1,22,3,4))

#获取执行完存储的参数,参数@开头

cursor.execute("select @p1,@_p1_1,@_p1_2,@_p1_3")#{u'@_p1_1': 22, u'@p1': None, u'@_p1_2': 103, u'@_p1_3': 24}

row_1= cursor.fetchone()

print row_1

conn.commit()

cursor.close()

conn.close()

三、关于pymysql防注入

1、字符串拼接查询,造成注入

正常查询语句:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

cursor= conn.cursor()

user="u1"

passwd="u1pass"

#正常构造语句的情况

sql="select user,pass from tb7 where user='%s' and pass='%s'" % (user,passwd)

#sql=select user,pass from tb7 where user='u1' and pass='u1pass'

row_count=cursor.execute(sql) row_1= cursor.fetchone()

print row_count,row_1

conn.commit()

cursor.close()

conn.close()

构造注入语句:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

cursor= conn.cursor()

user="u1' or '1'-- "

passwd="u1pass"

sql="select user,pass from tb7 where user='%s' and pass='%s'" % (user,passwd)

#拼接语句被构造成下面这样,永真条件,此时就注入成功了。因此要避免这种情况需使用pymysql提供的参数化查询。

#select user,pass from tb7 where user='u1' or '1'-- ' and pass='u1pass'

row_count=cursor.execute(sql)

row_1= cursor.fetchone()

print row_count,row_1

conn.commit()

cursor.close()

conn.close()

2、避免注入,使用pymysql提供的参数化语句

正常参数化查询

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

cursor= conn.cursor()

user="u1"

passwd="u1pass"

#执行参数化查询

row_count=cursor.execute("select user,pass from tb7 where user=%s and pass=%s",(user,passwd))

row_1= cursor.fetchone()

print row_count,row_1

conn.commit()

cursor.close()

conn.close()

构造注入,参数化查询注入失败。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

cursor= conn.cursor()

user="u1' or '1'-- "

passwd="u1pass"

#执行参数化查询

row_count=cursor.execute("select user,pass from tb7 where user=%s and pass=%s",(user,passwd))

#内部执行参数化生成的SQL语句,对特殊字符进行了加\转义,避免注入语句生成。

# sql=cursor.mogrify("select user,pass from tb7 where user=%s and pass=%s",(user,passwd))

# print sql

#select user,pass from tb7 where user='u1\' or \'1\'-- ' and pass='u1pass'被转义的语句。

row_1= cursor.fetchone()

print row_count,row_1

conn.commit()

cursor.close()

conn.close()

结论:excute执行SQL语句的时候,必须使用参数化的方式,否则必然产生SQL注入漏洞。

3、使用存mysql储过程动态执行SQL防注入

使用MYSQL存储过程自动提供防注入,动态传入SQL到存储过程执行语句。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

delimiter \\

DROP PROCEDURE IF EXISTS proc_sql \\

CREATE PROCEDURE proc_sql (

in nid1INT,

in nid2INT,

in callsql VARCHAR(255)

)

BEGIN

set @nid1= nid1;

set @nid2= nid2;

set @callsql= callsql;

PREPARE myprod FROM @callsql;

-- PREPARE prod FROM'select * from tb2 where nid>? and nid<?'; 传入的值为字符串,?为占位符

-- 用@p1,和@p2填充占位符

EXECUTE myprod USING @nid1,@nid2;

DEALLOCATE prepare myprod;

END\\

delimiter ;

1

2

3

4

set @nid1=12;

set @nid2=15;

set @callsql= 'select * from tb7 where nid>? and nid<?';

CALL proc_sql(@nid1,@nid2,@callsql)

pymsql中调用

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

conn= pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1')

cursor= conn.cursor()

mysql="select * from tb7 where nid>? and nid<?"

cursor.callproc('proc_sql', args=(11,15, mysql))

rows= cursor.fetchall()

print rows#((12, 'u1', 'u1pass', 11111), (13, 'u2', 'u2pass', 22222), (14, 'u3', 'u3pass', 11113))

conn.commit()

cursor.close()

conn.close()

四、使用with简化连接过程

每次都连接关闭很麻烦,使用上下文管理,简化连接过程

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

#! /usr/bin/env python

# -*- coding:utf-8 -*-

# __author__ = "TKQ"

import pymysql

import contextlib

#定义上下文管理器,连接后自动关闭连接

@contextlib.contextmanager

def mysql(host='127.0.0.1', port=3306, user='root', passwd='', db='tkq1',charset='utf8'):

conn= pymysql.connect(host=host, port=port, user=user, passwd=passwd, db=db, charset=charset)

cursor= conn.cursor(cursor=pymysql.cursors.DictCursor)

try:

yield cursor

finally:

conn.commit()

cursor.close()

conn.close()

# 执行sql

with mysql() as cursor:

print(cursor)

row_count= cursor.execute("select * from tb7")

row_1= cursor.fetchone()

print row_count, row_1

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/472826.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mysql mtop 使用_MYSQLMTOP监控环境搭建

MySQLMTOP是一个由PythonPHP开发的MySQL企业级监控系统。系统由Python实现多进程数据采集和告警&#xff0c;PHP实现WEB展示和管理。最重要是MySQL服务器无需安装任何Agent&#xff0c;只需在监控WEB界面配置相关数据库信息功能非常强大&#xff1a;可对上百台MySQL数据库的状态…

javascript正则表达式入门

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html><head><title> RegExp对象</title><script>/*function validation(obj){//1.得到文本框的值//var …

Hive是如何让MapReduce实现SQL操作的?

learn from 从0开始学大数据&#xff08;极客时间&#xff09; 1. MapReduce 实现 SQL 的原理 SELECT pageid, age, count(1) FROM pv_users GROUP BY pageid, age;实现过程&#xff1a; 2. Hive 的架构 Hive 能够直接处理我们输入的 SQL 语句&#xff08;Hive SQL 语法与 标…

python脚本编程手册_Python 入门指南 — Python2.7 手册 2.7 documentation - 脚本之家在线手册...

Python 入门指南 Release:2.7 Date:December 06, 2014 Python 是一门简单易学且功能强大的编程语言。它拥有高效的高级数据结构&#xff0c;并且能够用简单而又高效的方式进行面向对象编程。Python 优雅的语法和动态类型&#xff0c;再结合它的解释性&#xff0c;使其在大多数平…

mysql spring隔离级别_MySQL事务与Spring隔离级别实现

1、事务具有ACID特性原子性(atomicity)&#xff1a;一个事务被事务不可分割的最小工作单元&#xff0c;要么全部提交&#xff0c;要么全部失败回滚。一致性(consistency)&#xff1a;数据库总是从一致性状态到另一个一致性状态&#xff0c;它只包含成功事务提交的结果隔离型(is…

关闭程序

System.Diagnostics.Process.GetCurrentProcess().Kill();//关闭程序转载于:https://www.cnblogs.com/CandiceW/p/4204564.html

Java JDK 安装配置

文章目录1. 下载安装2. 配置环境变量3. 检查安装成功1. 下载安装 下载地址&#xff1a;https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html&#xff08;需要注册下载&#xff09; 以下操作环境&#xff1a;WIN 10 2. 配置环境变量 JAVA_HOME 为…

mqtt如何判断设备离线_反渗透纯水设备膜元件如何离线清洗?

原标题&#xff1a;反渗透纯水设备膜元件如何离线清洗&#xff1f;在反渗透设备正常运行&#xff0c;无故障时&#xff0c;反渗透系统一般都用在线清洗保养、冲击性杀菌以及定期保护。但是&#xff0c;如果当反渗透膜元件重度污染时&#xff0c;在线清洗就显得无能为力了&#…

mysql的表servers_ERROR 1146 (42S02): Table 'mysql.servers' doesn't exist

修改用户权限&#xff0c;刷新权限表&#xff0c;报1146mysql> flush privileges;ERROR1146 (42S02): Table mysql.servers doesnt existmysql> use mysql;mysql> show tables;可以看到servers表&#xff0c;在系统mysql 目录下&#xff0c;可以看到server.ibd 和serv…

HelloJava,我的第一个Java程序

HelloWorld.java public class HelloWorld { // HelloWorld 需要和文件名一致&#xff0c;因为 public// 一个文件最多一个 public 类// 如果该文件没有 public 类&#xff0c;则文件名随意取public static void main(String[] args) {float i 10.2f;i;//浮点数可以 System.…

python冒泡算法_python_冒泡算法

什么是冒泡算法&#xff1f; -- 像鱼吐泡泡一样&#xff0c;每次都是向上冒出一个水泡 如何逻辑整理&#xff1f; -- 先拿第一个值和剩下的值&#xff0c;一一比较&#xff0c;必能找到最大的或者最小的 -- 比较过程中&#xff0c;第一个值小于剩下的某个值&#xff0c;交换位置…

MongoDB的Java驱动使用整理 (转)

MongoDB Java Driver 简单操作 一、Java驱动一致性 MongoDB的Java驱动是线程安全的&#xff0c;对于一般的应用&#xff0c;只要一个Mongo实例即可&#xff0c;Mongo有个内置的连接池&#xff08;池大小默认为10个&#xff09;。 对于有大量写和读的环境中&#xff0c;为了确保…

Java 变量、数据类型

文章目录1. 变量、常量2. 数据类型1. 变量、常量 final 修饰常量 public class Variable {static final int YEAR 365;// 常量使用 final 修饰, 不可修改&#xff0c;类似C的 conststatic int day 0;// 成员变量public static void main(String[] args){System.out.println…

html背景图不显示_批量显示多张有序排列的图标,使用精灵图CSS Sprites这种办法...

让你显示一个天气图标你会怎么显示呢&#xff1f;让你做一个简单的动图你会怎么采用什么方式呢&#xff1f;让你输出一个长期固定的图标列表你会怎么编写代码呢&#xff1f;如果不管性能&#xff0c;不用css&#xff0c;不用js&#xff0c;可能你会这么写html&#xff1a;<类…

mysql堵塞等级_MySQL 事务隔离级别

前言简单来说&#xff0c;数据库事务就是保证一组数据操作要么全部成功&#xff0c;要么全部失败。在 MySQL 中&#xff0c;事务是在引擎层实现的。原生的 MyISAM 引擎不支持事务&#xff0c;也是为什么 InnoDB 会取代它的重要原因之一。隔离性与隔离级别当数据库上有多个事务同…

水晶报表取消输入密码最后测试结果

哈哈&#xff0c;找了很多资料终于解决了。 //添加引用 using CrystalDecisions.Shared ;//负责解释TableLogOnInfo类 using CrystalDecisions.CrystalReports .Engine ;//负责解释ReportDocument类private void Page_Load(object sender, System.EventArgs e) //然后在水晶报表…

Java 运算符、表达式、语句

文章目录1. 运算符2. 表达式3. 语句1. 运算符 赋值运算 , -, *, /, % 算术运算 , -, !, ~ 一元运算 关系运算 >, <, >, <, , ! 返回布尔 递增&#xff0c;递减--&#xff0c;支持&#xff08;float&#xff0c;double&#xff09;1, -1 逻辑运算 &&…

安装mysql没有提示设置密码_18.04安装mysql没有提示输入密码

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼MySQL 5.7不再弹出root密码设置sudo vi /etc/mysql/debian.cnf显示&#xff1a;# Automatically generated for Debian scripts. DO NOT TOUCH![client]host localhostuser debian-sys-maintpassword fPw**********22socket /v…

arrays中copyof复制两个数组_Java的数组初识和拷贝用法

方法重载&#xff1a;方法名称相同&#xff0c;参数列表不同。不能有两个名字相同、参数类型相同&#xff0c;返回值不同的方法。在进行方法重载时&#xff0c;方法的返回值一定相同&#xff01;&#xff01;&#xff01;方法递归特点&#xff1a;1.必须有结束条件2.每次递归处…

你不知道的 字符集和编码(编码字符集与字符集编码)

我的上篇文章&#xff0c;有朋友提出字符集和编码的区别&#xff0c;我在此立文和大家讨论下 常说的字符集和编码区别&#xff0c;其实就是编码字符集和字符集编码的区别&#xff0c;其实&#xff0c;单单如果只是说字符集&#xff0c;没有任何编码的概念的话&#xff0c;那么字…