• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Connect android project with Postgres SQL

Lal Valecha

Lurker
Hello,
I'm searching for - how do I connect my android application with Postgres SQL. As someone suggested me to go with Postgres database for getting more cloud storage.

Someone please let me know how do I do that!

Thank you☺️
 
The way to do this is to implement a REST web service on your server which hosts the Postgres database. The web service will handle requests for data, interrogate the database, and return the results back to your Android app.

See the link below for some pointers, and other useful links. There's plenty of other useful resources on the web about this:

https://stackoverflow.com/questions/14446260/how-implement-restful-services-in-android
 
Back
Top Bottom