I want to add on my android app sql database. So my question is if i call and create my database on each time lets say i press a button, then will it have to create the database again from start along with tables and columns? Or will it check if the database exist then it will just fill the table with the rest of my info?
Share
DataBase will be create only once.
here onCreate of the SqliteOpenHelper will get called only once unless we change the version of the Database.
Follow this tutorial.
Hope this is what you were looking for