Re: PostgreSQL connection with Android Studio

From: Steve Midgley <science(at)misuse(dot)org>
To: Majid Khan <mk(dot)swati(at)gmail(dot)com>
Cc: postgres list <pgsql-sql(at)postgresql(dot)org>
Subject: Re: PostgreSQL connection with Android Studio
Date: 2017-08-01 15:40:04
Message-ID: CAJexoS+Dep9xBXC6ZeSvQj-2Em6CWssQ18bM8ex-pUu5PXfw5g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tue, Aug 1, 2017 at 5:01 AM, Majid Khan <mk(dot)swati(at)gmail(dot)com> wrote:

> Hi,
>
>
> I have a postgres database running. I want an android app that need to
> access my database. But our developers are having problem with connecting
> to postgres database.
>
> Is there any tutorial or help available how to connect to pg database from
> android app.
>

Generally speaking most Android/iPhone apps connect to Postgres through a
"middle tier" API written in Ruby, Python, Java, Node.JS or similar. In
some cases you might sync Postgres to a local SQLite DB on the Android
device more directly, but that would be a pretty specialized and uncommon
implementation strategy.

It is a bad idea, even if technically attainable, to connect directly your
Postgres database for many reasons, but most practically/immediately are
security management and performance. I would strongly encourage you to
encourage your developers to build some kind of API server that the Android
app operates against, and connect that API server to your Postgres DB
server.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Michael Moore 2017-08-07 20:13:42 Better way to sort a JSONB array?
Previous Message Majid Khan 2017-08-01 12:01:36 PostgreSQL connection with Android Studio