标签:sel nbsp bsp pytho 指定 span python mysq 数据库
实现代码如下:
#mysql数据库的查询等 import pymysql from xctest_tools.xc_ReadFile.get_ReadTxt import * class mysql: def get_mysql(self,s): # 读取配置文件 db=ReadTxt().read_txt("../xc_datas/db_config") con=pymysql.connect(host=db[0],port=eval(db[1]),user=db[2],password=db[3],database=db[4],charset="utf8") cur=con.cursor() #查询到的条数 a=cur.execute(s) #查询到的所有信息,返回二维元组 # r1 = cur.fetchall() #查询到的第一条信息,返回一维元组 # r2 = cur.fetchone() #一次指定取1条记录 # r3 = cur.fetchmany(1) con.commit() cur.close() con.close() return a
标签:sel nbsp bsp pytho 指定 span python mysq 数据库
原文地址:https://www.cnblogs.com/badbadboyyx/p/11953576.html