Hacker News new | ask | show | jobs
by mweatherill 2326 days ago
Microsoft have released another IDE with notebook support called Azure Data Studio. It uses the same underlying code base as VS Code but is targeted at data driven tasks such as connecting to databases.

Strangely, it uses a different jupyter notebook implementation to VS Code. I found it avoids some of the annoying bugs mentioned in another comment.

It also introduces a SQL kernel which I’ve found useful for organising my queries.

2 comments

> SQL kernel

I've never heard this term before and a brief search for it did not bear any definitions.

Can you expand on what exactly makes an SQL kernel?

Not GP, but I think they are referring to https://github.com/jupyter/jupyter/wiki/Jupyter-kernels
Whilst jupyter notebooks are often synonymous with python code, the languages are actually pluggable by using a different kernel. Microsoft have implemented an SQL kernel which means you can write SQL queries directly in a notebook.
Azure Data Studio is a proper fork of VS Code all up. This is why it was able to work around some of the limitations the Python extension is currently dealing with.