8 likes
·
18.5K reads
12 comments
May you open source your duckdb playground, it's so fascinating that I'm curious to build my own customized version :)
This article and Workbench are mind-blowing. Super impressed.
Thank you for the nice feedback!
Very nice tool. I am missing, however, a mention of whether the data is processed exclusively in the local browser or if some data is shared with the server. If so, which data is shared with the server and how it is used. A privacy statement/data protection policy, basically.
I would also love to be able to run this locally in my machine using a light http server, if possible.
The SQL Workbench is based on DuckDB WASM, as stated in the article, and works entirely in your browser. No data is sent to other servers etc.
Regarding running it locally, it's currently not Open Source, so there's no way to do this right now.
Tobias Müller :-(
Very very nice tool you built there. Congrats!
Is there any possibility to ".open" a local duckdb file instead of working in ":memory:" ?
Hello, the SQL workbench is awesome. May I know which technique is required to build the UI and BE? And how to get started for a new programmer? Thanks.
Thanks! It's a React application just running in the frontend.
Really nice work!! Apologies if this is described elsewhere - can you connect to a local (or e.g. S3 hosted) version of a DuckDB database (i.e. .duckdb) file? Or only CSV, Parquet, JSON etc?
Yes, you can attach to a remote database, see tobilg.com/using-duckdb-wasm-for-in-browse…