Genereric function to write chunk by chunk
write_chunkwise(x, dest, ...)# S3 method for chunkwise
write_chunkwise(
x,
dest,
table,
file = dest,
format = c("csv", "csv2", "table"),
...
)
chunked input, e.g. created with read_chunkwise
or it can be a tbl_sql
object.
where should the data be written. May be a character or
a src_sql
.
parameters that will be passed to the specific implementations.
table to write to. Only used when dest is a data base(src_sql
)
File to write to
Specifies the text format for written to disk. Only used
if x
is a character.