MySQL 插入中的類型格式化:日期和時間物件
當嘗試將datetime.datetime 物件插入My出現以下情況:如果在執行語句中使用%s等佔位符,則會遇到錯誤「TypeError:在字串格式化期間未轉換所有參數」。出現此錯誤的原因是 MySQL 需要對日期和時間值進行特定格式。
要正確插入 datetime.datetime 對象,請使用以下方法:
對於時間:
import time time_string = time.strftime('%Y-%m-%d %H:%M:%S')
對於date:
import datetime date_string = datetime.datetime.now().strftime('%Y-%m-%d')
然後,在執行語句中,指定時間/日期字串作為參數:
cursor.execute("INSERT INTO table(name, id, datecolumn) VALUES (%s, %s, %s)", ("name", 4, time_string))
使用這些格式化方法可以確保MySQL 資料庫可以按預期正確解釋和儲存日期/時間資訊。
以上是如何使用Python正確地將日期和時間物件插入MySQL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!