Description Usage Arguments Value Details Examples
View source: R/RMariaDBHelper.R
Send a dataframe to the database to append to a table.
1 | db_append_table(df, tablename, conf_file = "~/.db_conf.yml", ...)
|
df |
(dataframe) A dataframe to append to a database table. |
tablename |
(character) A table name to receive additional records. |
conf_file |
(character) A file containing database connection parameters. (Default: "~/.db_conf.yml") |
... |
Additional arguments passed to RMariaDB::dbAppendTable(). |
(integer) Number of affected (appended) rows.
A dataframe will be sent to the database to be appended to an existing table.
1 2 3 4 | ## Not run:
db_append_table(datasets::iris, "iris")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.