I am loving the flexibility offered by ContentProvider, obviously ContentProvider is the favored route to go for an Android database, however, how does one efficiently populate the resulting database?
For instance, let's say I am creating an RSS reader with links to 100 feeds. The feeds themselves should be in the database at launch, how would I populate these feeds into the database?
Would I have to write 100 queries based on getContentResolver.insert() to do this? That approach seems complicated and unnecessary.
Moreover, how would one review the database content created to ensure things are going as planned? I can't simply find the database like one would with a SQL database created for the app.
Thank you for the suggestions!