rws_rename_table | R Documentation |
Rename SQLite Table
rws_rename_table(table_name, new_table_name, conn)
table_name |
A string of the name of the table. |
new_table_name |
A string of the new name for the table. |
conn |
A SQLiteConnection to a database. |
TRUE
Other rws_rename:
rws_drop_table()
,
rws_rename_column()
conn <- rws_connect() rws_write(rws_data, exists = FALSE, conn = conn) rws_list_tables(conn) rws_rename_table("rws_data", "tableb", 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.