由于夏令时导致的MySQLdb._exceoption.OperationalError

时间:2019-07-08 13:34:07

标签: python mysql

我无法将数据框上传到mySQL数据库。该错误消息表明,尽管我在utc中创建了一个日期范围,并且我还希望将数据以utc时间保存在我的数据库中,但时间偏移还是有问题(我来自德国)。

感谢您的帮助

idx = pd.date_range(start=f'{year}-01-01', periods=len(df), freq='H', tz='utc').shift(-1, freq='H')

df.set_index(idx, inplace=True)

df.to_sql('intraday_continuous', con=engine, index=True, if_exists='replace')

sqlalchemy.exc.OperationalError: (MySQLdb._exceptions.OperationalError) (1292, "Incorrect datetime value: '2019-03-31 02:00:00' for column 'index' at row 273") 

0 个答案:

没有答案