[Solved] Creating multiple Tables and inserting Data into them [closed]
Your issue “there is always only one table created”, will be due to the very common misconception that the onCreate method, in DatabaseHelper.java (generally termed the Database Helper) runs every time the App is run. Actually the onCreate method is only automatically invoked once for the lifetime of the database. If the data held in … Read more