我在 MySQL 表中有一个日期列。我想在此列中插入一个 datetime.datetime()
对象。我应该在 execute 语句中使用什么?
我试过了:
now = datetime.datetime(2009,5,5)
cursor.execute("INSERT INTO table
(name, id, datecolumn) VALUES (%s, %s
, %s)",("name", 4,now))
我收到一个错误: "TypeError: not all arguments converted during string formatting"
我应该用什么来代替 %s
?