I'm trying to insert this row of data (i parse from a list of tuples)
(0L, u'2012-11-06T16:23:36-05:00', 0L, None, 23759918L, u'baseline', u'0 to 100', nan, 105114L, 2009524L, True, u'charge', u'Charge')
into a mySQL database table, but i seem to have problems with the null value (NaN), because i receive this error:
OperationalError: (1054, "Unknown column 'nan' in 'field list'")
I've tried making columns nullable in mySQL, and also making all text fields, but still no dice..