Re: [INTERFACES] EXEC SQL CONNECT

From: Michael Meskes <Michael_Meskes(at)usa(dot)net>
To: James Thompson <jamest(at)math(dot)ksu(dot)edu>
Cc: PostgreSQL Interfaces <pgsql-interfaces(at)postgresql(dot)org>
Subject: Re: [INTERFACES] EXEC SQL CONNECT
Date: 1999-01-21 08:31:17
Message-ID: 19990121093117.A2863@gmx.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

On Wed, Jan 20, 1999 at 09:09:59PM -0600, James Thompson wrote:
> I'm trying to use ecpg to connect to postgres

Good. :-)

> I've never used embedded sql in C though years ago I did use Pro*FORTRAN
> for Oracle. Anyway how do I connect to a remote or local database in ecgs
> passing in the database name, username, and password. The test programs
> in the tarball don't seem to do this.

The following is accepted syntax:

exec sql connect to <database name> [as <connection name>] [user <user name>]
exec sql connect to default
exec sql <user name>

As for the database name you can choose two different sets of syntax:

new style:
<tcp|unix>:postgresql://server[:port][/dbname][?options]

old style:
style: dbname[(at)server][:port]

Finally the user name can be written as:

<user>
<user>/<password>
<user> identified by <password>
<user> using <password>

Hope this helps.

Michael

--
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz | Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: Michael(dot)Meskes(at)gmx(dot)net | Use PostgreSQL!

In response to

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Fischl Anton 1999-01-21 17:32:14 Re: [ADMIN] jdbc driver, can it run on a windows machine?
Previous Message Peter T Mount 1999-01-21 08:17:25 Re: [INTERFACES] JDBC postgresql.Driver