我有一个由 strptime 函数生成的日期时间值
import MySQLdb
a = time.strptime('my date', "%b %d %Y %H:%M")
MySql 数据库中有一个 DATETIME 类型的列。当我尝试将此值插入数据库时,显然,我得到了错误
mysql_exceptions.OperationalError: (1305, 'FUNCTION time.struct_time does not exist')
INSERT INTO myTable(Date......) VALUES(time.struct_time(tm_year=2222, tm_mon=4, tm_mday=1, tm_hour=1, tm_min=2, tm_sec=4, tm_wday=1, tm_yday=118, tm_isdst=-1), ......)
如何将此值插入数据库?