rws_drop_table | R Documentation |
Drops SQLite table using DROP TABLE.
rws_drop_table(table_name, conn)
table_name |
A string of the name of the table. |
conn |
A SQLiteConnection to a database. |
Also drops rows from meta and init tables.
TRUE
https://www.sqlite.org/lang_droptable.html
Other rws_rename:
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.