write_sqlite | R Documentation |
Functions for writing data frames or delimiter-separated files to database tables.
write_sqlite(file, name, value, overwrite = FALSE, append = FALSE) read_sqlite(file, name)
file |
file path |
name |
a character string specifying a table name. SQLite table names are not case sensitive, e.g., table names ABC and abc are considered equal. |
value |
a data.frame (or coercible to data.frame) object or a file name (character). In the first case, the data.frame is written to a temporary file and then imported to SQLite; when value is a character, it is interpreted as a file name and its contents imported to SQLite. |
overwrite |
a logical specifying whether to overwrite an existing table or not. Its default is FALSE. |
append |
a logical specifying whether to append to an existing table in the DBMS. Its default is FALSE. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.