Skip to contents

Retrieves schema information for all tables in a DuckDB database.

Usage

get_duckdb_tables(con)

Arguments

con

DuckDB connection

Value

Data frame with table names, column info, and row counts

Examples

if (FALSE) { # \dontrun{
tables <- get_duckdb_tables(con)
tables
} # }