我正在尝试使用Dask dataframe连接。read_sql_table.i正在连接数据库。但是从数据框中检索数据时却出现此属性错误
“ URL”对象没有属性“ cursor” 我在堆栈溢出中看到了很多答案,但是没有任何效果。
params = urllib.parse.quote_plus("Driver={ODBC Driver 17 for SQL
Server};Server;Database;uid;pwd\")
engine = create_engine("mssql+pyodbc:///?odbc_connect=%s" % params)
uri=engine.url
data=dd.read_sql_table("Table", uri, index_col="index")
target=data['columns name']
target.mean().compute()
AttributeError:“ URL”对象没有属性“光标”