Quickstart
Install DuckDB
First, you need to install DuckDB, it is pretty easy, you can check this page. DuckDB is an in-process database system that offers client APIs for several languages.
The compatibility between Netquack and DuckDB varies across versions.
Version of Netquack
Version of DuckDB
v1.0.0
v1.2.0
Install Netquack
BlockDuck is one of the available DuckDB community extensions, so we can use INSTALLand LOAD to install it easily.
INSTALL netquack FROM community;
LOAD netquack;If you previously installed the extension, upgrade using the FORCE command
FORCE INSTALL netquack FROM community;
LOAD netquack;Last updated
Was this helpful?