码迷,mamicode.com
首页 > 数据库 > 详细

Python实现操作mysql数据库

时间:2019-11-28 21:09:20      阅读:95      评论:0      收藏:0      [点我收藏+]

标签: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

 

Python实现操作mysql数据库

标签:sel   nbsp   bsp   pytho   指定   span   python   mysq   数据库   

原文地址:https://www.cnblogs.com/badbadboyyx/p/11953576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!