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

UI自动化web端框架mymysql.py代码

时间:2018-07-05 14:48:23      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:type   rom   other   read   imp   main   commit   ict   sele   

import pymysql
from lib.core.config import Config,ConfigType
class MyMysql(object):
def __init__(self):
self.config = Config()
self.data = self.config.read(ConfigType.MYSQL)
self.db = pymysql.connect(**self.data)
self.cur = self.db.cursor(cursor = pymysql.cursors.DictCursor)

def select_sql(self,sql):
try:
self.cur.execute(sql)
except Exception as e:
print(‘这里出错了,错误信息是:%s‘ % e)
else:
return self.cur.fetchone()

def other_sql(self,sql):
try:
self.cur.execute(sql)
except Exception as e:
print(‘这里出错了,错误信息是:%s‘ % e)
else:
self.db.commit()

def close(self):
self.cur.close()
self.db.close()

if __name__ == ‘__main__‘:
print(MyMysql().select_sql(‘select * from user_info;‘))

UI自动化web端框架mymysql.py代码

标签:type   rom   other   read   imp   main   commit   ict   sele   

原文地址:https://www.cnblogs.com/laosun0204/p/9267999.html

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