I happen to have more than one fragments in my activity, all of them are tied to CursorLoaders to fetch data from the Content Providers. All the fragments happen to query the same table but are showing different sets of data from that table. So when my activity will be started, there will be multiple SQL queries running on the same database.
Not sure if the queries will be queued-in internally or simultaneous access will slow down the process, but is this an efficient way of handling this scenario? Is there any performance hit or is it better to get all data in a single query?
Note that all queries are for READ access only.
