Re: Embedding Postgres in Java Application

From: Kris Jurka <books(at)ejurka(dot)com>
To: Jasper Potts <jasper(at)squarepark(dot)com>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: Embedding Postgres in Java Application
Date: 2005-01-16 16:32:20
Message-ID: Pine.BSO.4.56.0501161128440.22550@leary.csoft.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On Sun, 16 Jan 2005, Jasper Potts wrote:

> Is there a way of creating a JDBC connection to the db not over a
> network socket?

No. Java does not have support for unix sockets.

> The other way is going to be to start/stop the database from Java by
> calling "pg_ctl start/stop". But that issues with this because of the
> windows restrictions that postgres can't be run as a user with admin
> privileges. Any Ideas?
>

Even if Java did support unix sockets you would still have to start the
server running. PostgreSQL is not designed to be an embedded database
(especially not by Java). This doesn't seem like a great idea, perhaps
one of the Java databases would be more appropriate for this task?

Kris Jurka

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Jasper Potts 2005-01-16 16:41:51 Re: Embedding Postgres in Java Application
Previous Message Jasper Potts 2005-01-16 16:20:37 Embedding Postgres in Java Application