This is the SQL code I want to run on my SQLite3 DB:
INSERT INTO tbl_types VALUES(?, ?);
But no matter how much I play with ?s I get the same "SQL logic error or missing database" error, while simply replacing the ?s with custom arbitrary values, runs and I get the record there in my table, and thus I deduce something’s wrong with my syntax.
What’s the cure?
I must apologize for I found the problem partly by Googling and partly brute force:
The leftmost SQL parameter has an index of 1and I was confusing it with the similar clause I read atcolumnpage.Thanks for taking your time anyway 😉