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

python连接mysql数据库

时间:2019-04-26 11:06:07      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:code   print   port   class   int   nbsp   游标对象   密码   color   

import pymysql
class Mydb():
    def __init__(self):
        try:
            self.conn = pymysql.connect(‘127.0.0.1‘,‘root‘,‘密码‘,‘库名‘,charset=‘utf8‘)#数据库连接
            # 使用 cursor() 方法创建一个游标对象 cursor
            self.cursor = self.conn.cursor()
        except Exception as e:
            print(e)

    def execute(self,sql,data):
        try:
            # 使用 execute()  方法执行 SQL 查询
            self.cursor.execute(sql,data)
            self.conn.commit()
        except Exception as e:
            self.conn.rollback()
            print(e)
if __name__==‘__main__‘:
    Mydb()

 

python连接mysql数据库

标签:code   print   port   class   int   nbsp   游标对象   密码   color   

原文地址:https://www.cnblogs.com/shiweijiang/p/10772959.html

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