Adding a new column


ALTER TABLE tbl_status ADD COLUMN status_default TEXT;

This will cause an error if the column already exists.  To check if a column already exists first you can use:

PRAGMA table_info(tbl_status);

which will return a table listing the columns of the table.  However many people use the built in PRAGMA user_version) to store an incremental number which you increment as you update the database design (its starts from zero for a new database nless you specify it).

Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.

Comments

Your email address will not be published. Required fields are marked *