rws_read.SQLiteConnection {readwritesqlite} | R Documentation |
Read All Tables from a SQLite Database
Description
Read All Tables from a SQLite Database
Usage
## S3 method for class 'SQLiteConnection'
rws_read(x, meta = TRUE, ...)
Arguments
x |
A SQLiteConnection to a database. |
meta |
A flag specifying whether to preserve meta data. |
... |
Not used. |
Value
A named list of the data frames.
See Also
Other rws_read:
rws_describe_meta.data.frame()
,
rws_read.character()
,
rws_read()
Examples
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)
[Package readwritesqlite version 0.2.0 Index]