debugtalk.py辅助函数 - 连接数据库
2022/5/26 2:21:27
本文主要是介绍debugtalk.py辅助函数 - 连接数据库,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
连接数据库
接口操作完成后,校验数据库 1.首先安装mysql驱动包pymysql pip install pymysql连接数据库进行增删改查
connect_mysql.pyimport pymysql # 配置数据库相关信息 dbinfo = { "host": "127.0.0.1", "user": "root", "password": "123456", "port": 8080 } class DbConnect(object): def __init__(self, db_cof, database=""): # 打开数据库连接 self.db = pymysql.connect(database=database, cursorclass=pymysql.cursors.DictCursor, **db_cof) # 使用cursor()方法获取操作游标 self.cursor = self.db.cursor() print("连接成功") def select(self, sql): # sql查询语句 # sql = 'select * from table where name="张三"' self.cursor.execute(sql) results = self.cursor.fetchall() print("查询成功") return results def execute(self, sql): # sql删除、提交、修改语句 print("删除成功") try: self.cursor.execute(sql) # 执行sql语句 self.db.commit() # 提交修改 except: # 发生错误时回滚 self.db.rollback() def close(self): # 关闭连接 self.db.close() if __name__ == "__main__": db = DbConnect(dbinfo, database='info') sql = 'select * from info where id=1;' res = db.select(sql) print(res) sql1 = 'delete from info where id =2;' res1 = db.execute(sql) print(res1)
测试结果校验数据库状态
debugtalk.pyfrom utils.connect_mysql import DbConnect, dbinfo def get_db_info(user_id,key='id'): db = DbConnect(dbinfo, database='info') sql = 'select * from info where id=%s;' % user_id res = db.select(sql) print(res) if len(res) == 0: result = '空' else: result = res[0][key] return result if __name__ == "__main__": r = get_db_info(user_id=1) print(r)
update_info.py
config: name: 修改用户信息用例 base_url: http://127.0.0.1:8080 variables: user_id: 1 username: "zhangsan" usertel: 13333333333 usersex: "m" birthaddress: "羊村" birthday: 2000-01-01 schoolname: "蓝翔技校" teststeps: - name: 修改用户信息 request: url: /api/test/info/$user_id method: PUT json: username: $username usertel: $usertel usersex: $usersex birthaddress: $birthaddress birthday: $birthday schoolname: $schoolname validate: - eq: [status_code, 200] - eq: [body.code, 1000] - eq: [body.msg, success!] - eq: [body.data.goodsstatus, '${get_db_info($user_id)}']
这篇关于debugtalk.py辅助函数 - 连接数据库的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-13怎么通过 JavaScript 或其他编程语言来实现监听屏幕高度变化功能?-icode9专业技术文章分享
- 2024-11-12聊聊我们那些年用过的表达式引擎组件
- 2024-11-12让项目数据更有说服力:五款必备数据可视化管理工具推荐
- 2024-11-12人到一定年纪,要学会远离多巴胺
- 2024-11-12解读:精益生产管理的目的是什么?如何操作?
- 2024-11-12Sku预研作业
- 2024-11-12文心一言API密钥:分步申请指南
- 2024-11-12初学者指南:轻松掌握后台交互
- 2024-11-12从零开始学习:封装基础知识详解
- 2024-11-12JSON对象入门教程:轻松掌握基础用法