How to build custom sqlite with provider under Android?

Posted by dr4cul4 on Stack Overflow See other posts from Stack Overflow or by dr4cul4
Published on 2010-03-24T21:00:25Z Indexed on 2010/03/24 21:03 UTC
Read the original article Hit count: 164

Filed under:
|
|
|

Hi,

I have a really strange problem.

I need to build custom sqlite3 database engine under Android OS, but I also want to use database provider implementation. Unfortunately when examining sources of Android 1.6 I noticed that it's not so easy.

Many classes including android.database.; packages use original provider, also many other parts of framework use android.database.sqlite.; packages directly, wich ofcourse make this abstraction a bit confusing and unnesesary.

But going to my question. If there is any way that I could extend database interfaces to use custom implmentation of sqlite (or any other database)?

© Stack Overflow or respective owner

Related posts about android

Related posts about custom