-
Notifications
You must be signed in to change notification settings - Fork 106
Support transactions (and pandas.to_sql / read_sql_table) #72
New issue
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
Comments
I'm not surprised you're seeing issues here. |
Also note that Databricks doesn't support transactions. But this isn't required for SQLAlchemy to work. In our native dialect we disable these warnings 👍 |
Final: you can follow the development of the internal dialect here #57. Here's an e2e test that uses |
do you know how i'd be able to write a table then? I'd rather not have to write the whole SQL statement by hand. I can use the |
You can use the experimental dialect or wait til it merges to |
It's a great project, and truly helps me in a variety of ways. However, I am having a few issues when utilizing it with Pandas.
When reading a table I would like to do:
This should return a pandas dataframe.
However, I am required to do the following lacking features from your otherwise great connection.
Similarly I cannot use the
to_sql
on a dataframe where i'd like to do something like the following:Both fail
Versions:
The text was updated successfully, but these errors were encountered: