python连接mysql数据库
时间:2021-07-01 10:21:17
帮助过:9人阅读
= 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