I was following this tutorial in order to integrate a pre made database to my Android App.
Everything was going well until it asked me to rename my Primary Key Field to "_id". Well for one I don't have a PK (I know it's bad DB practice), and two, the PK is not an integer type, giving a type mismatch error. Now, I tried to rename one of my fields (non integer) to "_id" and now I can't rename it back. Also, I tried removing an extra field that I don't need and it gives me this error:
Error removing field. Message from database engine: table TEMP_TABLE already exists
or this
Error editing field. Message from database engine: table TEMP_TABLE already exists
Not quite sure how to work this out since I'm not familiar with using the terminal to work with databases. I tried looking around and there are no extra unaccounted for tables so I don't know where these are coming from.