Another in my string of MySQLdb questions:
str(row) seems to return NULL values as None. Any easy way to have it
return NULL as NULL?
My code looks something like this:
---
for row in curOld.fetchall():
sql = """
INSERT INTO chugach_email_addresses
(POP3, Address, EmailPassword, MailServerName)
VALUES %s
""" % str(row)
curNew.execute(sql)
---