How to use Berkeley DB SQL API in Android

My Android program has a huge database overload, and also includes several processes (Apps) that simultaneously access the database. Obviously, I found that a nested DB engine is not enough.

So, I closed in Berkeley DB, and since I don't want to port my code to support NoSQL databases, I would like to use the Berkeley DB SQL API, not the Berkeley Java Edition. Can someone tell me how I can use this in my Android program?

I could not find absolutely no references to this. Mine is an Android app, so I can’t create custom firmware that replaces SQLite with BerkeleyDB.

+4
source share
2 answers

Work with a large database on Android

One answer to this question is the answer you are looking for (I think). Second shot.

+1
source

There are many ways to archive, without using Java Edition, cross-compiling C code and using Java bindings .

0
source

Source: https://habr.com/ru/post/1343620/


All Articles