时间:2021-07-01 10:21:17 帮助过:4人阅读
views.py
def index(request): cursor = connection.cursor() cursor.execute("insert into book(id,name,author) values(null,‘三国演义‘,‘罗贯中‘)") #通过execute执行sql语句 rows = cursor.fetchall() #通过fetchall将所有结果取出来 for row in rows: print(rows) return render(request,‘index.html‘)
运行项目,在浏览器输入127.0.0.1:8000,可看到数据库中增加了一条数据,并能在项目的终端看到输出结果
django连接mysql数据库
标签:unit setting pre engine 端口 lte cut tab 手动