Skip to content

Commit

Permalink
Improve on extension loading
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Sep 24, 2024
1 parent a64710e commit 13e4ccb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@ DuckDB-Wasm is currently based on DuckDB v1.1.1.

## DuckDB-Wasm with DuckDB Extension
```sql
LOAD json;
LOAD parquet;
--- Excplicitly load extensions
LOAD icu;


--- Or have them autoloaded when using relevant functions or settings
FROM read_json('https://some.url/file.json');
```

## Build from source
Expand Down

0 comments on commit 13e4ccb

Please sign in to comment.