I will be using Sqlite in my project for CRUD operations. I wanted to know if we have any GUI tool to check the values inserted in the database using Sqlite operations, edit the tables using the tool, and ultimately delete all values when deploying my app to store.
Also if I add new properties in my class, how will those update my tables in Sqlite database. Do I have to drop tables if any new properties are added to class, or Sqlite automatically alters the table with the newly added column through class properties.