1
我有一個熊貓數據框,我想要導出到SQLite數據庫。數據庫有一個日期時間索引,我懷疑這可能是一個問題。熊貓數據框到SQLite - AttributeError:'數據框'對象沒有'編碼'屬性
當我運行這部分代碼:
con = sqlite3.connect("pat_rec.db")
dfMid.to_sql(dfMid,con=con, flavor='sqlite', if_exists='replace')
我得到這個錯誤:
AttributeError: 'DataFrame' object has no attribute 'encode'
哇。那很簡單。非常感謝你的幫助Kristof。 –