SQL 更新失败 - pyodbc - informix

发布于 2024-12-06 10:14:29 字数 293 浏览 0 评论 0原文

使用 pyodbc 通过 python 脚本更新 informix 数据库会默默失败。

我正在使用 pyodbc wiki 中提供的语法并尝试手动提交和自动提交

   cursor= conn.cursor()
   cursor.execute("update eqpt set notes='BOB' where serialno='SAM'") 
   conn.commit()
   conn.close() 

我也在 pyodbc 组中发布了这个问题,但不幸的是没有得到答案。

Updates to an informix database via a python script using pyodbc are silently failing.

I am using the syntax as provided in the pyodbc wiki and tried manual commit as well as autocommit

   cursor= conn.cursor()
   cursor.execute("update eqpt set notes='BOB' where serialno='SAM'") 
   conn.commit()
   conn.close() 

I posted this question in the pyodbc group as well but unfortunately did not get an answer.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘寄 2024-12-13 10:14:29

两个想法:

  1. 检查有多少记录被更改(由 execute() 返回),以及应更改多少记录(使用 SELECT count(*) ... WHERE ...

    cursor= conn.cursor()
    
    rs = c.execute("从 eqpt WHERE serialno='SAM' 中选择 count(*)")
    对于 c.fetchall() 中的 txt:
        print('%s 之前' % (txt[0]))
    
    rows_affected=cursor.execute(“更新eqpt集注释='BOB',其中serialno='SAM'”) 
    print('受影响的行数: %d' % (受影响的行数))
    
    rs = c.execute("从 eqpt WHERE serialno='SAM' 中选择 count(*)")
    对于 c.fetchall() 中的 txt:
        print('%s 之后' % (txt[0]))
    
    conn.commit()
    conn.close() 
    
  2. 您可以启用 ODBC 跟踪并检查 ODBC 驱动程序返回的内容。

Two ideas:

  1. Check how many records was changed (it is retured by execute()), and how many records should be changed (using SELECT count(*) ... WHERE...:

    cursor= conn.cursor()
    
    rs = c.execute("SELECT count(*) FROM eqpt WHERE serialno='SAM'")
    for txt in c.fetchall():
        print('before %s' % (txt[0]))
    
    rows_affected = cursor.execute("update eqpt set notes='BOB' where serialno='SAM'") 
    print('rows_affected: %d' % (rows_affected))
    
    rs = c.execute("SELECT count(*) FROM eqpt WHERE serialno='SAM'")
    for txt in c.fetchall():
        print('after %s' % (txt[0]))
    
    conn.commit()
    conn.close() 
    
  2. You can enable ODBC tracing and check what is returned by ODBC driver.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文