powered by
Copy data to remote service.
replyr_copy_to(dest, df, name = paste(deparse(substitute(df)), collapse = " "), ..., rowNumberColumn = NULL, temporary = FALSE, overwrite = TRUE, maxrow = 1e+06, forceDelete = FALSE)
remote data source
local data frame
name for new remote table
force later values to be bound by name
if not null name to add row numbers to
logical, if TRUE try to create a temporary table
logical, if TRUE try to overwrite
max rows to allow in a remote to remote copy.
logical, if TRUE try to delete table.
remote handle
# NOT RUN { if (requireNamespace("RSQLite", quietly = TRUE)) { my_db <- dplyr::src_sqlite(":memory:", create = TRUE) d <- replyr_copy_to(my_db, data.frame(x=c(1,2)), 'd') print(d) } # }
Run the code above in your browser using DataLab