eoghanm
eoghanm

Reputation: 327

Connecting to a Heroku PostgreSQL Database in an Android app?

I wrote a ruby on rails app that I host on heroku and is used as a tool for creating data and storing it in the postresql heroku database

How do I do connect to it from an Android app for fetching data?

Upvotes: 0

Views: 1387

Answers (1)

Ovidiu Latcu
Ovidiu Latcu

Reputation: 72311

The approach for this should be to use REST services to perform CRUD operations on your data, not directly connect from Android to the `database.

Upvotes: 1

Related Questions