[android-developers] Joins vs. Content provider

2011-03-10 Thread Jay Bloodworth
Is there a standard or recommended idiom for doing the equivalent of a join of data in a local database versus a content provider? is there anything more efficient than explicitly looping on the result set from the local database query and doing individual queries of the content provider to grab

Re: [android-developers] Joins vs. Content provider

2011-03-10 Thread Kostya Vasilyev
Not sure I understand the question: the implementation of a ContentProvider doesn't have to map data URIs to one particular table each. It's probably the most obvious thing to do, but it doesn't have to be this way. You can map URIs to DB queries any way you like, and include JOIN's if needed