Using SQL query builder / framework library with Android

I am currently working on an Android project and will have to manage the database connection and storage requests. I will not work with SQLite, as provided by the Android device, and use it is not an option.

Since I need to collect quite a few queries, I wanted to use a library or framework to facilitate the task. Looking at what was available, it was easiest to use an infrastructure like QueryDSL.

However, since I am working on Android, I am not sure that the framework can be used and that its use will entail. Does anyone have any experience using an external Android database and any recommendations?

+4
source share
1 answer

The recommended way to connect to an external database is to use the REST client. See message

0
source

All Articles