对于任何可以帮助的人,谢谢。使用pyodbc运行INSERT语句时,出现一个非常奇怪的错误。错误代码为:
cursor.execute(QueryInsert,params)
pyodbc.DataError: ('22008', '[22008] [Microsoft][ODBC Microsoft Access
Driver]Datetime field overflow (36) (SQLExecDirectW)')
这与日期时间1986-03-28 00:00:00一致
我使用的代码是:
###Necessary Imports
from fredapi import Fred
import pyodbc
import datetime
###Connect to Access Database
conn = pyodbc.connect(r"Driver={Microsoft Access Driver (*.mdb, *.accdb)};"
+r"DBQ=G:\Financial Modelling\Lease Database v1.0.accdb;")
cursor = conn.cursor()
###3M Libor
SourceCode = 'GBP3MTD156N'
fred = Fred(api_key='insert-api-key')
data = fred.get_series_all_releases(SourceCode)
A = data.shape[0]
###Cycle Through Results
for i in range(1,A):
date1 = data.loc[i,'date']
print(date1)
###execute query at date and only upload if empty
existquery = "SELECT * FROM EconVars WHERE SourceCode = '" + SourceCode + "'
AND ValueDate = " + \
"#"+str(date1.month)+"/"+str(date1.day)+"/"+str(date1.year)+"#"
cursor.execute(existquery)
existData = cursor.fetchall()
###check if empty
if len(existData) == 0:
value1 = data.loc[i,'value']
Description = '3M Libor'
Source1 = 'Fred'
params = (date1,value1,Description,Source1,SourceCode)
QueryInsert = """INSERT into EconVars (ValueDate, ReportedValue,
Description, Source,SourceCode)
Values(?,?,?,?,?)"""
cursor.execute(QueryInsert,params)
cursor.commit()
###Commit Cursor for 3M LIBOR
cursor.commit()
cursor.close()
我正在使用的访问文件中的表有5列 ValueDate定义为日期/时间(短日期) ReportedValue作为数字(双精度) 简短说明 来源为短文本 源代码为短文本
有人在看到此错误之前还是能够复制该错误?
Python 3.7.2 64位pyodbc 4.0.25 W10 64位和Office 365 64位
感谢任何有想法的人。
答案 0 :(得分:2)
我发现问题不在于API提供的datetime列。
实际上,报告的值(如果缺少)应该是双精度值,实际上是'NaT',我认为它是一个numpy NULL值或等效值。
Access期望一个双精度值。
答案 1 :(得分:0)
下面是一个示例,该示例说明如何将您的日期时间字段更改为OP在对我有用的答案(以熊猫为单位)中所说的内容:
import pandas as pd
df = pd.DataFrame(['01/01/2019',None], columns=['datetime_field'])
df['datetime_field'] = pd.to_datetime(df['datetime_field'])
df['datetime_field'] = pd.to_datetime(df['datetime_field'], errors='coerce').where(df['datetime_field'].notnull(), 0.0)
该字段中的空值最初是NaT。
熊猫where文档