rws_read.character | R Documentation |
Read Tables from a SQLite Database
## S3 method for class 'character' rws_read(x, meta = TRUE, conn, ...)
x |
A character vector of table names. |
meta |
A flag specifying whether to preserve meta data. |
conn |
A SQLiteConnection to a database. |
... |
Not used. |
A named list of the data frames.
Other rws_read:
rws_describe_meta.data.frame()
,
rws_read.SQLiteConnection()
,
rws_read()
conn <- rws_connect() rws_write(rws_data, exists = FALSE, conn = conn) rws_write(rws_data[c("date", "ordered")], x_name = "data2", exists = FALSE, conn = conn ) rws_read(c("rws_data", "data2"), conn = conn) rws_disconnect(conn)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.