开发者

Making complex queries through SQLiteDatabase

I'm using the Android MediaProvider application to get information regarding the resources registered in the media library. The only way I found to do this is to use the ContentProvider class provided by the MediaProvider application. Unfortunately, it seems to me this is quite a limitation, isn't it? Is it possible this way to create complex queries with subqueries and us开发者_C百科ing other functions of SQLite? I thought that it may be possible using the SQLiteDatabase class, but it seems it is not possible to open the database directly with its path, and anyway, the query method seems not to allow subqueries. Any solution to this? Thanks!


The answers I found until now are that it is impossible (with a reasonable effort) to access another application's data (included databases) without using the ContentProvider and that a complex query may be executed with the rawQuery method of the class SQLiteDatabase. This means anyway that it must be executed in the ContentProvider itself.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜