Can I use Couch DB or MySql or any other DB in Android?

We know that Android uses SQLite as the default database. My question is: is it possible to replace this CouchDB or MySql or any other database and run it successfully? Has anyone done this? I walked through. What are the requirements for using CouchDB on Android? and other questions in SO, but I do not quite understand this. It seems possible to install CouchDB on Android , but as an application. I want to know if it is possible to replace SQLite with Couch or MySql or any other database.

Any help would be greatly appreciated. Thank you in advance.

+4
source share
3 answers

You can really use CouchDB on Android.

Here is a video discussing CouchDB http://www.youtube.com/watch?v=3RdcKWYGqig

You will need an external SD card. It works as a service, so you can use multiple applications using CouchDB. It also has amazing replication capabilities. Therefore, if you need to synchronize with the main database, then COuchDB makes it very simple.

There is more details in this answer fooobar.com/questions/283669 / ...

There are also several tutorials on the Internet, but for starters you can download the CouchDB app from the Android Marketplace.

+4
source

db4o works on android, although it is OODB, not RDBMS. I suspect some Java-only DBs will work; Derby has never been found, H2 has at least some early support.

+2
source

AFAIK, there is no other database that you can use in android.

+1
source

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


All Articles