get_table_rdb {when} | R Documentation |
Once all the configuration elements have been defined and the dimension table has been generated, using this function we can obtain it in table format in a Relational DBMS.
get_table_rdb(td, con, overwrite)
## S3 method for class 'when'
get_table_rdb(td, con, overwrite = FALSE)
td |
A |
con |
A |
overwrite |
A boolean, allow overwriting tables in the database. |
Invisible NULL.
Other getting results:
get_table_csv()
,
get_table_xlsx()
,
get_table()
my_db <- DBI::dbConnect(RSQLite::SQLite())
when() |>
generate_table() |>
get_table_rdb(my_db)
DBI::dbDisconnect(my_db)