rws_read.SQLiteConnection | R Documentation |
Read All Tables from a SQLite Database
## S3 method for class 'SQLiteConnection'
rws_read(x, meta = TRUE, ...)
x |
A RSQLite::SQLiteConnection to a database. |
meta |
A flag specifying whether to preserve meta data. |
... |
Not used. |
A named list of the data frames.
Other rws_read:
rws_describe_meta.data.frame()
,
rws_read()
,
rws_read.character()
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(conn)
rws_disconnect(conn)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.