Skip to content

Commit

Permalink
docs: remove duckdb code annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Sep 9, 2023
1 parent 0d197e8 commit b0bcdde
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions docs/backends/duckdb.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,17 @@ render_do_connect("duckdb")
In addition to `ibis.duckdb.connect`, you can also connect to DuckDB by
passing a properly formatted DuckDB connection URL to `ibis.connect`

```{.python}
con = ibis.connect("duckdb:///path/to/local/file")
```
```{python}
import ibis
```{.python}
con = ibis.connect("duckdb://") # (1)
con = ibis.connect("duckdb://local.ddb")
```

1. ephemeral, in-memory database
Without an empty path, `ibis.connect` will connect to an ephemeral, in-memory database.

```{python}
con = ibis.connect("duckdb://")
```

## MotherDuck

Expand Down

0 comments on commit b0bcdde

Please sign in to comment.