嗨,我已經安裝了WAMP服務器(Mysql,apache,php),並且還單獨安裝了「Python」。現在我試圖使用python代碼連接到該數據庫。Wamp Server和Python
這是我的Python代碼:
#!C:\Python32\python.exe
import sys
import os
import cgi
import MySQLdb
import cgitb
import SecureDb
cgitb.enable()
print ("Content-type: text/plain\n\n");
conn= MySQLdb.connect(host = SecureDb.host ,user =SecureDb.user ,passwd=SecureDb.password ,db=SecureDb.database)
cursor=conn.cursor()
cursor.execute("select * from register where Name='Subburaj'")
result=cursor.fetchall()
cursor.close()
conn.close()
但是,這是否顯示錯誤:
Traceback (most recent call last):
File "C:\Users\Ponmani\Desktop\test.cgi", line 5, in <module>
import MySQLdb
File "C:\Python32\lib\site-packages\MySQLdb\__init__.py", line 17, in <module>
from release import __version__, version_info, __author__
ImportError: No module named release
如果有人過這樣的問題來了,請幫我解決this.Thanks提前。
回溯中的奇數行2與文件中的第2行不匹配。你確定你給我們的是'C:\ Users \ Ponmani \ Desktop \ test.cgi'的內容嗎? –
對不起大衛羅賓遜..現在你可以看到我編輯的帖子.. –