How would I implement the following command in python:
ALTER TABLE {tableName} ADD COLUMN COLNew {type};
I assume it would look something like the following:
cursor.execute('ALTER TABLE my_table ADD COLUMN COLNEW ... ???
The problem is there are lots of sqlite tutorials for python and lots of sqlite examples. How does one convert a sqlite command to python?