Skip to contents

Closes the DuckDB connection and detaches from the current DuckLake.

Usage

detach_ducklake(ducklake_name = NULL)

Arguments

ducklake_name

Optional name of the ducklake to detach. If not provided, closes the current connection.

Examples

if (FALSE) { # \dontrun{
attach_ducklake("my_ducklake")
# ... do work ...
detach_ducklake("my_ducklake")
} # }