rws_list_tables {readwritesqlite} | R Documentation |
Table Names
Description
Gets the table names excluding the names of the meta and log tables.
Usage
rws_list_tables(conn)
Arguments
conn |
A SQLiteConnection to a database. |
Value
A character vector of table names.
Examples
conn <- rws_connect()
rws_list_tables(conn)
rws_write(rws_data, exists = FALSE, conn = conn)
rws_list_tables(conn)
rws_disconnect(conn)
[Package readwritesqlite version 0.2.0 Index]