Skip to contents

Closes a DuckDB connection.

Usage

close_duckdb(conn)

Arguments

conn

A DuckDB connection object.

Value

Invisible NULL.

Examples

if (FALSE) { # \dontrun{
conn <- use_duckdb()
# Use the connection...
close_duckdb(conn)
} # }