xeus-sql
xeus-sql copied to clipboard
Jupyter kernel for SQL databases
## Description I am not able to install via conda on an M1 Macbook. Seems like there is no distribution setup for osx_arm64. ```sh conda install xeus-sql -c conda-forge Collecting...
Fix #63 Hey @jameshowison, I think this is a dirty solution... But, since to do something better we'd have to refactor a lot of the code, I don't really see...
It seems that having a `--` comment on the first line of a cell causes no result to be displayed by postgres. e.g., ``` -- new query SELECT * FROM...
While creating a sample query I tried to list databases using a SELECT query, running into: ``` Error: unknown data type with typelem: 28 for colNum: 10 with name: datfrozenxid...
I'm running into responsiveness issues with queries with many results (~100,000 order of magnitude). If it was just me then I'd add LIMIT statements, remembering to remove them later in...
When writing queries it's often useful to get a feel for the number of results (without specifically writing a COUNT(*) bit). Currently the number of rows is at the bottom...
Tested on these queries in the cloud demo [1]: ``` with t as (select * from employees) select * from t ``` ``` with t as (select 1) select 1...
Postgres uses commands starting with a \ char, but these don't seem to execute in xues-sql. e.g., ``` \list ``` which should show all databases the user can see on...
Hi, I have just installed xeus-sql and am using it with Postgresql. It is generating an error when I try to access Postgresql columns of type "money" in select statements....
Hey y'all, I started using `xeus-sql` and it's fantastic, I love the interface for querying data, it feels way more jupyter-native, it's great I was planning to use it for...