My Android program has a huge DB overload and also involves multiple processes (Apps) accessing the database at the same time. Obviously, I found the bundled SQLite
DB engine insufficient.
So I closed in on Berkeley DB, and since I don't want t开发者_StackOverflowo port my code to support NoSQL databases, I would like to use Berkeley DB SQL API and not the Berkeley Java Edition. Can someone tell how do I use this in my Android program?
I could find absolutely no links on this. Mine is an Android Application, so I cannot build a custom firmware which replaces SQLite with BerkeleyDB.
Dealing with a large database in Android
One of the answers on this question has the answer you're looking for (I think). Second one down.
There are definitely many ways to archive this, one without using the Java Edition is cross-compiling the C code and using the Java bindings.
精彩评论