Description Usage Arguments Value Examples
View source: R/psql_carf_insert.R
Insere novos registros a uma tabela existente
1 | psql_carf_insert(con, tbl = NULL, data = NULL, batch_size = 50000)
|
con |
conexao |
tbl |
tabela existente |
data |
data.frame |
batch_size |
number of rows to be inserted at a time. Defaults to 50.000 |
NULL se inserido corretamente
1 2 3 4 5 6 | ## Not run:
con <- dbx::dbxConnect()
DBI::dbCreateTable(con, "consumidor", consumidor)
psql_insert(con, "consumidor", consumidor)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.