使用mysql数据库
关注公众号“轻松学编程”了解更多。
引入pymysql模块
方法一:
模块引入参考
中的安装第三方模块。
方法二:
使用命令
pip install pymysql
模块名称:pymysql。
步骤:
1、引入pymysql
2、配置并获得连接:pymysql.connect()
3、获得查询游标:cursor = conn.cursor()
4、执行SQL语句:affected = cursor.execute(sql)
5、从cursor中拿查询结果:cursor.fetchall()
6、提交结果:conn.commit()
7、断开连接:conn.close()
from django