A similar question has been asked before, but the query is embedded in java and perhaps less clear to a total novice who would be asking this type of question.
I think the 'rowid' column is not auto-populating/auto-incrementing. Table, insert statement, and error code as follows:
CREATE TABLE T (rowid INTEGER PRIMARY KEY, c1 REAL, c2 REAL);
insert into T values (8,9);
Error code in my DB Browser is:
table T has 3 columns but 2 values were supplied: insert into T values (1,2);
I have other code that is very similar but not producing this error. Any help is greatly appreciated! Thanks!!