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

Python通过pymysql连接数据库并进行查询和更新SQL方法封装

时间:2019-12-18 20:18:08      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:token   json   int   mys   passwd   hone   connect   修改   etc   

1、通过pymysql连接数据库并进行数据库操作
2、查询数据
3、更新修改SQL方法封装

import pymysql.cursors
import json


class OperationMysql:
    def __init__(self):
        self.conn = pymysql.connect(
            host=127.0.0.1,
            port=3306,
            user=test,
            passwd=11111,
            db=test,
      
            charset=utf8,
            cursorclass=pymysql.cursors.DictCursor
        )
        self.cur = self.conn.cursor()

    # 查询一条数据
    def search_one(self, sql):
        self.cur.execute(sql)
        result = self.cur.fetchone()
        return result

    # 更新SQL
    def updata_one(self, sql):
        self.cur.execute(sql)
        self.conn.commit()
        self.conn.close()


if __name__ == __main__:
    op_mysql = OperationMysql()
    res = op_mysql.search_one("SELECT * from order WHERE order_no=‘M191023401681654‘")
    print(res)

 

 

Python通过pymysql连接数据库并进行查询和更新SQL方法封装

标签:token   json   int   mys   passwd   hone   connect   修改   etc   

原文地址:https://www.cnblogs.com/CesareZhang/p/12062329.html

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