you could load the results from the cursor into a temporary SQLite table 
and then do the inner join. But that's not really an elegant solution.

On Sunday, February 3, 2013 3:42:29 AM UTC-5, fahad mullaji wrote:
>
> Hi Guys,
>
> I am getting all songs from SDCARD using below code,
>
> Cursor objCursor;
>     final String[] projection = {"*"};
>        
>     objCursor = 
> objContext.getContentResolver().query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
>  
>                 projection, 
>                 null, 
>                 null, 
>                 null);
>
> I have one SQL Lite table named PlayerHistory. I want to inner join this 
> table on MediaId on above query . Is it possible?
>
>
> Thanks in advance
> Fahad Mullaji
>
>  

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to