I searched the forums for help on accessing MySQL from Python and I understand that there have been some issues with missing or incompatible MySQLdb module. The last word on the subject seems to be that the issue is closed. However, my Python script still cannot import the MySQLdb module.
In other words, this script:
emits "No module named MySQLdb"
Many thanks in advance for advice or assistance.
Philip
In other words, this script:
Code:
[FONT="Courier New"]#!/usr/bin/python
print "Content-Type: text/plain"
print ""
try:
....import MySQLdb
except Exception, e:
....print e
[/FONT]
Many thanks in advance for advice or assistance.
Philip