python接口自动化测试二十六:使用pymysql模块链接数据库

Posted 向前走。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python接口自动化测试二十六:使用pymysql模块链接数据库相关的知识,希望对你有一定的参考价值。

 #!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2018/5/28 18:51
# @Author  : StalloneYang
# @File    : mysql_test.py
# @desc:


# 连接数据库

import pymysql.cursors


# 连接MySQL数据库
connection = pymysql.connect(host=\'localhost\', port=3306, user=\'yang\', password=\'\', db=\'test_yang\', charset=\'utf8mb4\', cursorclass=pymysql.cursors.DictCursor)

# 通过cursor创建游标
cursor = connection.cursor()

# 执行数据查询
sql = "SELECT `id`, `name`,\'address\' FROM `tb_emp` WHERE NAME = \'杨大大\'"
cursor.execute(sql)

#查询数据库单条数据
result = cursor.fetchone()
print(result)
print(type(result))

print("-----------华丽分割线------------")

# 执行数据查询
sql = "SELECT `id`, `name`,\'address\' FROM `tb_emp`"
cursor.execute(sql)

#查询数据库多条数据
result = cursor.fetchall()
for data in result:
    print(data)

# 关闭数据连接
connection.close() 

 

以上是关于python接口自动化测试二十六:使用pymysql模块链接数据库的主要内容,如果未能解决你的问题,请参考以下文章

API接口自动化测试框架搭建(二十六)-框架README.md设计

python接口自动化测试二十:函数写接口测试

python接口自动化测试二十七:密码MD5加密

python接口自动化测试二十二:文件下载

python接口自动化测试二十五:执行所有用例,并生成HTML测试报告

python接口自动化测试二十三:文件上传