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 to 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.