我正在开发用户上传图像的应用程序。我必须将它存储到mysql数据库中。稍后显示它。我试过以下代码。
import MySQLdb as mdb
// Lines of code here
img=self.request.get('img')
cursor.execute("UPDATE Candidate SET profile_pic=%s ",(mdb.escape_string(img)))
// lines of code here
conn.commit()
conn.close()
它在本地主机上运行,但是当我在服务器上部署应用程序时,它会出现以下错误。
ImportError: No module named _mysql 任何指南?