powered by
Rename SQLite Table
rws_rename_table(table_name, new_table_name, conn)
TRUE
A string of the name of the table.
A string of the new name for the table.
A SQLiteConnection to a database.
Other rws_rename: rws_drop_table(), rws_rename_column()
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)
Run the code above in your browser using DataLab