↧
Answer by laalto for Create SQLite database + table and save them for future use
Assuming you want to insert your three courses to the database only once when the database is created:Move the insert code to database helper onCreate(). It gets called once when the database file...
View ArticleCreate SQLite database + table and save them for future use
I followed a tutorial to create an SQLite database and create tables in it for an application. But all of this happens at runtime. Now I'm looking for a way to create the database and table so I can...
View Article