为了账号安全,请及时绑定邮箱和手机立即绑定

Cursor.execute 不起作用

Cursor.execute 不起作用

茅侃侃 2021-07-26 16:50:13
cursor.execute(query) 如果我使用 sqldeveloper 在 oracle 中输入了元组手册,则不会在 Django 中执行。        with connection.cursor() as cursor:            try:                print(value)                print(username)                cursor.execute("Select * from users where id=1")            finally:                cursor.close()
查看完整描述

2 回答

?
holdtom

TA贡献1805条经验 获得超10个赞

使用下面的代码。


from django.db import connection

cursor = connection.cursor()

cursor.execute("SELECT * Table ")

results = cursor.fetchall()


查看完整回答
反对 回复 2021-08-03
  • 2 回答
  • 0 关注
  • 633 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信