readwritesqlite (version 0.0.1)

rws_list_tables: 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

Run this code
# NOT RUN {
conn <- rws_connect()
rws_list_tables(conn)
rws_write(rws_data, exists = FALSE, conn = conn)
rws_list_tables(conn)
rws_disconnect(conn)
# }

Run the code above in your browser using DataCamp Workspace