pyodbc 和 MySQLdb 有什么区别?

发布于 2024-11-25 23:35:34 字数 482 浏览 2 评论 0原文

我在 win x64 上使用 python 2.6 用 pyodbc 编写了一些代码,没有任何问题。 使用相同的代码切换到 MySQLdb 我收到错误。

例子。长对象不可迭代......

pyodbc 和 MySQLdb 有什么区别?

编辑

import csv, pyodbc, os 
import numpy as np

cxn = pyodbc.connect('DSN=MySQL;PWD=me') 
import MySQLdb
cxn =  MySQLdb.connect (host = "localhost",user="root",passwd ="me")

csr = cxn.cursor()


try:

   csr.execute('Call spex.updtop')

   cxn. commit

except: pass 

csr.close()
cxn.close() 
del csr, cxn 

I have some code written with pyodbc on win x64 using python 2.6 and I get no problem.
Using the same code switching to MySQLdb I get errors.

Example. Long object not iterable....

whats the difference between pyodbc and MySQLdb?

EDIT

import csv, pyodbc, os 
import numpy as np

cxn = pyodbc.connect('DSN=MySQL;PWD=me') 
import MySQLdb
cxn =  MySQLdb.connect (host = "localhost",user="root",passwd ="me")

csr = cxn.cursor()


try:

   csr.execute('Call spex.updtop')

   cxn. commit

except: pass 

csr.close()
cxn.close() 
del csr, cxn 

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

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

发布评论

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

评论(1

小镇女孩 2024-12-02 23:35:34

如果不查看代码,就不清楚为什么会出现错误。正如 Ignacio Vazquez-Abrams 评论的那样,您可以使用其中任何一种连接到 MySQL 数据库,它们都实现了 Python DB API 的 2.x 版本,尽管它们的底层工作原理完全不同。

需要考虑的一些事项:

  • 您是否使用了 Python DB API 的扩展,而这两种扩展可能无法在两者中实现?
  • 这两个库将 MySQL 数据类型转换为 Python 数据类型的方式是否相同?
  • 有可以发布的示例代码吗?

Without seeing code, it's not obvious why you're getting errors. You can connect to MySQL databases using either one, and they both implement version 2.x of the Python DB API, though their underlying workings are totally different, as Ignacio Vazquez-Abrams commented.

Some things to consider:

  • Are you using extensions to the Python DB API that might not be implemented in both?
  • Are the two libraries translating MySQL datatypes to Python datatypes the same way?
  • Is there example code you could post?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文