Re: Possible bug in ECPGlib thread-safety (Postgres 7.4)...

From: Philip Yarra <philip(at)utiba(dot)com>
To: "Demetres Pantermalis" <dpant(at)intracom(dot)gr>
Cc: <pgsql-interfaces(at)postgresql(dot)org>
Subject: Re: Possible bug in ECPGlib thread-safety (Postgres 7.4)...
Date: 2003-12-04 22:44:19
Message-ID: 200312050944.19240.philip@utiba.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Hi Demetres,

> Indeed the test_thread.pgc compiles and runs successfully in both mentioned
> platforms.

Okay, thanks.

> The reason I started this issue, is because in the documentation it is not
> clear that the "SET CONNECTION" should not be used in multi-threaded
> applications.

You're right, the current documentation is not clear on this point... I
submitted a patch recently to address this issue (unfortunately not in time
for the 7.4 release).

In light of your question, I might add some detail related to SET CONNECTION.

> Anyway, are there any plans to change the behavior of the "SET CONNECTION"
> to be as I have expected, in the near future???

I don't think so... the behaviour of SET CONNECTION is a bit confusing, but I
think documenting it clearly would suffice.

The reason for this is below (I'm going from memory here, if I get this wrong
can someone correct me please?)

Unlike the libpq C interface, there is no "connection" variable maintained in
ECPG... instead, ECPG internally maintains a global list of open connections.
When a client application issues an EXEC SQL, a connection is retrieved from
the list, and the SQL statement is executed on that connection. The first
connection in the list is the "default" connection, so if you don't specify a
named connection using "AT conn_name" ECPG grabs the first connection in the
list.

I'm pretty sure what happens when you issue EXEC SQL SET CONNECTION is that it
sets the the default connection, so each of your threads would simply have
shuffled the default connection. Then when each thread attempts to EXEC SQL
they grab the same connection... whichever connection was made the default by
the last thread to issue EXEC SQL SET CONNECTION.

I believe this behaviour is consistent with other DBMS implementations of
embedded SQL, but I'm shooting from the hip.

Let me know if there are any other specific things you think ought to be in
the documentation too, and I will try to add them.

Regards, Philip Yarra.

In response to

Responses

Browse pgsql-interfaces by date

  From Date Subject
Next Message Michael Meskes 2003-12-05 07:12:59 Re: Possible bug in ECPGlib thread-safety (Postgres 7.4)...
Previous Message D'Arcy J.M. Cain 2003-12-04 14:40:16 Re: 7.4 and Pygresql