Re: Remote connections to postgres... - Mailing list pgsql-novice

From Joel Burton
Subject Re: Remote connections to postgres...
Date
Msg-id Pine.LNX.4.21.0104231509430.29603-100000@olympus.scw.org
Whole thread Raw
In response to Remote connections to postgres...  ("Bob Whitehouse" <bwhitehouse@geeknest.com>)
List pgsql-novice
On Mon, 23 Apr 2001, Bob Whitehouse wrote:

> I need to connect to the postgres server from a remote machine with a Perl
> script. If I were on a local machine I would use something like this for the
> first part of the connection string: 'DBI:Pg:dbname=name'
>
> Can someone give me and example of what the connection string would look
> like from a remote machine?

`man DBD::Pg`

shows

 $dbh =
DBI->connect("dbi:Pg:dbname=$dbname;host=$host;port=$port;options=$options
;tty=$tty", "$username", "$password");

as an example.

Does this work?


--
Joel Burton   <jburton@scw.org>
Director of Information Systems, Support Center of Washington


pgsql-novice by date:

Previous
From: Poul Kristensen
Date:
Subject: Re: Java Interface for postgres database
Next
From: Ian Lance Taylor
Date:
Subject: Re: Using cursors inside PL/pgSQL function