Gets the table names excluding the names of the meta and log tables.

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)
#> character(0)
rws_write(rws_data, exists = FALSE, conn = conn)
rws_list_tables(conn)
#> [1] "rws_data"
rws_disconnect(conn)