Eduardo Blancas

Results 297 comments of Eduardo Blancas

This [has been added](https://jupysql.readthedocs.io/en/latest/connecting.html) to JupySQL 0.5.1 (a fork of ipython-sql): ```sh pip install jupysql --upgrade ``` ```python import pandas as pd from sqlalchemy.engine import create_engine engine = create_engine("sqlite://") df...

I looked at the code to understand why this is failing. It turns out, ipython-sql isn't using the psycopg2's [autocommit](https://www.psycopg.org/docs/connection.html#connection.autocommit) feature. `%config SqlMagic.autocommit=True` sets a flag that causes ipython-sql to...

The main issue here is to reproduce the problem. However, I think it'd still be valuable to provide a workaround, perhaps a timeout? So that cells that take too long...

Error I'm getting when trying to start the `examples/`: ``` (tmp) eduardo@macbookair dev/funix (main) » ls Funix_vs_them.md MANIFEST.in README.zh-CN.md docs/ frontend/ setup.cfg LICENSE README.md backend/ examples/ pyproject.toml (tmp) eduardo@macbookair dev/funix...

yeah, the effect of autolimit is not to add a `LIMIT` to the statement but to send the query and only fetch the top X results, are you seeing performance...

the docker image only has clickhouse installed so my guess is that it should be independent from the sqlalchemy version unless they had to make changes to clickhouse for sqlalchemy...

did you try the [short_errors](https://jupysql.ploomber.io/en/latest/api/configuration.html#short-errors) option? I remember the spark compatibility came from an external contributor so I'm unsure if the `short_errors` option will work, but if it doesn't, feel...

thanks, we'll look at this in the meantime, you can try uninstalling jupysql-plugin after installing jupysql, that should remove both buttons

Note: we fixed the "share notebook" button. we're working on a fix for the "format SQL" (they're in different repos) making a new release of ploomber-extension shortly