sqlnotebook icon indicating copy to clipboard operation
sqlnotebook copied to clipboard

Casual data exploration in SQL

Results 27 sqlnotebook issues
Sort by recently updated
recently updated
newest added

I'm trying to export some data to text files: ```sql Declare $TablesCount = (select count(name) from sqlite_master where type='table') Declare $TableName Declare $FileName For $counter = 0 To $TablesCount-1 Begin...

enhancement

Hi team, I am trying to open json file and getting below error. The file type .json is not supported. ![sqlnotebook](https://user-images.githubusercontent.com/26465793/34926239-f2419fa6-f9e8-11e7-919d-edae7fe424bd.PNG)

Cannot connect to a SQL Azure database via Azure Active Directory authentication.

enhancement

Trying to set up a connection to SQL server using URL jdbc:jtds:sqlserver://localhost:1433;DatabaseName=ACPDEV with a verified username and password I keep getting a cannot connect message This URL works in DBVisualizer

Good morning, Can your LIST_FILES function accept a VAR for the root_path e.g. a folder string?

Submitted in https://github.com/electroly/sqlnotebook/discussions/46

When I use save command,it can save on disk with new filename. But it open new sqlnb file immediately,it does not exit the sqlnotebook application. Can change the condition that...