1 Star 0 Fork 0

saber110/wx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mysql.py 508 Bytes
一键复制 编辑 原始数据 按行查看 历史
saber110 提交于 2018-09-11 15:29 . 初始化仓库
#!/usr/bin/env python
# coding=utf-8
import MySQLdb
import config
import MySQLdb.cursors
def connect():
db=MySQLdb.connect(config.host, config.username, config.password, config.database, charset='utf8',cursorclass=MySQLdb.cursors.DictCursor)
return db
def getData(db, query, table):
c=db.cursor()
c.execute(query)
data = c.fetchall()
c.close()
return data
def query(db,query):
c=db.cursor()
c.execute(query)
db.commit()
c.close()
def close(db):
db.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/saber456789/wx.git
git@gitee.com:saber456789/wx.git
saber456789
wx
wx
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385