For the complete documentation index, see llms.txt. This page is also available as Markdown.

Dataset$connect_dbi

Dataset$connect_dbi() DBI::DBIConnection

Returns a DBI connection that can be used by dbplyr and other interfaces that work with DBI. This connection is scoped to the respective dataset, avoiding the need to fully qualify tables.

For advanced use cases, you can also access the Redivis DBI interface at redivis::RedivisDBI. dataset$connect_dbi() is the same as calling: DBI::dbConnect(redivis::RedivisDBI(dataset=dataset))

Returns:

DBI::DBIConnection

Examples

con <- redivis$dataset("demo.ghcn_daily_weather_data")$connect_dbi()

tbl(con, "stations") |> filter(latitude > 0) |> collect()

# Prints a tibble with the relevant weather stations

Last updated

Was this helpful?