powered by
Drops SQLite table using DROP TABLE.
rws_drop_table(table_name, conn)
TRUE
A string of the name of the table.
A SQLiteConnection to a database.
Also drops rows from meta and init tables.
https://www.sqlite.org/lang_droptable.html
Other rws_rename: rws_rename_column(), rws_rename_table()
rws_rename_column()
rws_rename_table()
conn <- rws_connect() rws_write(rws_data, exists = FALSE, conn = conn) rws_list_tables(conn) rws_drop_table("rws_data", conn = conn) rws_list_tables(conn) rws_disconnect(conn)
Run the code above in your browser using DataLab