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
I'd like to be able to manage my own connections and transactions with sqlalchemy:
def foo(connection): pd.read_sql_query(query, con=connection) def bar(connection, data): data.to_sql(name='foo', con=connection) def main(): with engine.connection() as conn, conn.begin(): bar(foo(), connection=conn) bar(some_other_data, connection=conn)
The text was updated successfully, but these errors were encountered:
support both sqlalchemy engines and connections Fixes pandas-dev#10104
6e80100
See #7877. So closing this as a duplicate (but certainly comment there! or at the PR at once)
Sorry, something went wrong.
No branches or pull requests
I'd like to be able to manage my own connections and transactions with sqlalchemy:
The text was updated successfully, but these errors were encountered: