Re: [INTERFACES] ECPG Question - Mailing list pgsql-interfaces

From Michael Meskes
Subject Re: [INTERFACES] ECPG Question
Date
Msg-id 19990120210232.A293@gmx.net
Whole thread Raw
In response to ECPG Question  ("Bruce Tenison" <btenison@rstc.cc.al.us>)
Responses RE: [INTERFACES] ECPG Question
List pgsql-interfaces
On Wed, Jan 20, 1999 at 11:35:59AM -0600, Bruce Tenison wrote:
> Hi!  I hope that I'm in the correct list to ask this question.  We have a

Yes.

> daemon that need to access our PostgreSQL database and have been trying to
> use ecpg to generate the C source to use to access the database.  Basically,
> we're winding up with a bunch of open sockets for some reason.  Here's the
> function that accesses the database, and I'm wondering if we're closing the
> connection properly (since we call this routine quite often...)

The function listed below is not an embedded sql function as preprocessed by
ecpg. It only uses libecpg. Or is this the result of an ecpg run?

> int getuname(ipaddr)
> char *ipaddr;
> {
>         ECPGconnect("currentuser");

ECPGconnect is used to connect to a database. So you open a connection to DB
currentuser everytime you call this function.

> ...
>         ECPGtrans(__LINE__, "end");
>
>         return not_found_uname;
> }

This only commits the transaction but does not disconnect from the database.
For that you need a call to ECPGfinish as done in ECPGdisconnect.

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.Meskes@gmx.net          | Use PostgreSQL!

pgsql-interfaces by date:

Previous
From: James Thompson
Date:
Subject: EXEC SQL CONNECT
Next
From: Peter T Mount
Date:
Subject: Re: [INTERFACES] JDBC postgresql.Driver