Python MySQLdb 连接导入错误
Python MySQLdb Connection Import Error
我正在尝试使用以下代码连接数据库:
import MySQLdb
db = MySQLdb.connect(host="localhost", # your host, usually localhost
user="root", # your username
passwd="root", # your password
db="test101") # name of the data base
# you must create a Cursor object. It will let
# you execute all the queries you need
cur = db.cursor()
# Use all the SQL you like
cur.execute("SELECT * FROM test1")
# print all the first cell of all the rows
for row in cur.fetchall():
print row[0]
db.close()
但是,我在控制台上收到以下错误消息:
Traceback (most recent call last):
File "C:\Users\JRambo\workspace\DBConnection\src\DBConnection.py", line 6, in <module>
import MySQLdb
File "C:\Python27\lib\site-packages\MySQLdb\__init__.py", line 19, in <module>
import _mysql
ImportError: DLL load failed: %1 is not a valid Win32 application.
我已经仔细按照步骤操作了。
How do I connect to a MySQL Database in Python?
您可能想要验证您的位 Python 和位 MySQLdb
是否正确。如果您有 32 位 Python 和 64 位 MySQLdb
,它将无法工作。我遇到了同样的回溯错误的类似问题,当我安装了每个应用程序的正确位类型时,宾果游戏!希望这对您有所帮助!
我正在尝试使用以下代码连接数据库:
import MySQLdb
db = MySQLdb.connect(host="localhost", # your host, usually localhost
user="root", # your username
passwd="root", # your password
db="test101") # name of the data base
# you must create a Cursor object. It will let
# you execute all the queries you need
cur = db.cursor()
# Use all the SQL you like
cur.execute("SELECT * FROM test1")
# print all the first cell of all the rows
for row in cur.fetchall():
print row[0]
db.close()
但是,我在控制台上收到以下错误消息:
Traceback (most recent call last):
File "C:\Users\JRambo\workspace\DBConnection\src\DBConnection.py", line 6, in <module>
import MySQLdb
File "C:\Python27\lib\site-packages\MySQLdb\__init__.py", line 19, in <module>
import _mysql
ImportError: DLL load failed: %1 is not a valid Win32 application.
我已经仔细按照步骤操作了。 How do I connect to a MySQL Database in Python?
您可能想要验证您的位 Python 和位 MySQLdb
是否正确。如果您有 32 位 Python 和 64 位 MySQLdb
,它将无法工作。我遇到了同样的回溯错误的类似问题,当我安装了每个应用程序的正确位类型时,宾果游戏!希望这对您有所帮助!