I\'m new to Python and Python\'s MySQL adapter. I\'m not sure if I\'m missing something obvious here:
db = MySQLdb.connect(# db details omitted) cursor = se
The problem might be that you are not committing the changes. it can be done by conn.commit()
conn.commit()
read more on this here