We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
when I try to use panges with access I become this Error:
raise exc.CompileError(
sqlalchemy.exc.CompileError: The 'access' dialect with current database version settings does not support in-place multirow inserts.
Have someone a workaround for Access or something like this?
` dataframe = pd.DataFrame(data=[data]) columnnamespr = pr_DB.columns.keys()
dataframe = dataframe.rename(columns=dict(zip(dataframe.columns, columnnamespr))) dataframe.set_index(['ID'], drop=True, inplace=True) with engine.connect() as con: upsert(con=con, df=dataframe, table_name='produkte', if_row_exists='update', create_table=False, chunksize=1)`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey,
when I try to use panges with access I become this Error:
sqlalchemy.exc.CompileError: The 'access' dialect with current database version settings does not support in-place multirow inserts.
Have someone a workaround for Access or something like this?
` dataframe = pd.DataFrame(data=[data])
columnnamespr = pr_DB.columns.keys()
The text was updated successfully, but these errors were encountered: