怎样知道django数据库有没有操作成功?

fromdjango.dbimportconnection,transaction
cursor=connection.cursor()#获得一个游标(cursor)对象
cursor.execute('updateother_other2setname="李四"whereid=%s',[3])
transaction.commit_unless_managed()#提交到数据库
我该怎么知道数据库有没有更新成功呢?
慕慕森
浏览 406回答 2
2回答

30秒到达战场

失败的话会抛出TransactionManagementError异常

慕后森

直接从sql里提取刚刚更新的数据不就看到了么
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript