-
Notifications
You must be signed in to change notification settings - Fork 52
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
Help requested: support additional database types #113
Comments
I would be interested in seeing if any changes need to be made to make MS SQL work. I've managed to get it to login using a connection string of the form:
I can run queries, but tables don't show up. I get similar behaviour with a pymssql connection string:
As with the pyodbc string, I can run queries, but tables don't show up. Any ideas where I could look into the code to make that happen? |
I have the same case when I connect to a Postgres databases postgresql+psycopg2://username:password@host:5432/db_name I can run queries, but don't see the tables |
@pbugnion please add Clickhouse is not expressly supported by many things including native sqlalchemy, but is supported reasonably well via the |
please add support for opened: #139 |
I would be interested into seeing support for Snowflake. Snowflake uses ANSI compliant SQL and also as already developed an SQL alchemy package. BR |
My team at work is very much interested in implementing your extension. We currently use Oracle and are experiencing the same problem mentioned in issue #132 We found the bug causing it - Therefore in function
As this may not work for other types of databases (we haven't tested that), you should probably pass the db type to the function and based on that choose the appropriate handling. Unless you extract it directly from connection_url, but I'm not that familiar with this particular functionality as I construct connection string in a different way, so I'm not sure if this would work for all cases (perhaps it would, so the change of parameters would not be required). I'd appreciate if you'd let me know once the change is implemented. |
Hi Pascal Bugnion, Jupyterlab-sql is not working. I tried version down of python and jupyterlab. I am able to connect database but I am able to see table but I am not able to open those tables. can you suggest possibility to fetch the data |
Help requested If anybody is willing to actively support database types, reply to this issue.
Currently, jupyterlab-sql actively supports:
Other database types may work if SQLAlchemy supports them. See here for a list of database types supported by SQLAlchemy.
It would be good to extend active support to more database types. In particular, the following have come up:
Since the current maintainers don't have easy access to database servers of these types, it is unlikely that they will extend support to these by themselves. Actively supporting a database type involves being willing to QA jupyterlab-sql releases against that database type and generally being willing to answer issues related to that.
If you are interested, reply to this issue.
The text was updated successfully, but these errors were encountered: