Populates the RStudio Connection viewer
connection_view(
con,
connection_code = "",
host = "",
name = "",
connection_id = ""
)It populates the RStudio Connections pane. It returns nothing to the console or session.
library(DBI)
con <- connection_open(RSQLite::SQLite(), path = ":dbname:")
connection_view(con)
connection_close(con)