Logged In: NO
Browser: Mozilla/4.75 [en] (X11; U; Linux 2.2.16-3 i686)

Hi,

I'm using ZPoPyDA-0.7.1-pre2 with Zope-2.2.4.
It seems that the adapter causes zope to wait
indefinitely on http requests. I cannot guess
when or why this happens. Is it an installation
problem ?

I'd like to know what is the PoPy version that I should
use (as sometimes I changed manually the accepted
versions in PoPy_db.py to accept versions newer than
1.4.1.

I saw the checkbox "autocommit mode" in database
connection property panel. I'd like to know what it
stands for, i.e. does it disable completely transaction
handling by the adapter or not ?

I think it could be useful to let the application
handle manually transactions, as in the following case:

<dtml-try>
<dtml-in "SQLInsert(params)">
<dtml-else>
</dtml-try>

<dtml-in "SQLFind(params)">
...
</dtml-in>

It seems that the adapter makes a transaction around
all the Zope Page, but I enclosed the first query in a
<try> block because I know that it could fail.
In the code, I'd like to have the second query executed
in everycase, but I cannot, as the first one fails, and
PostgreSQL ignores all subsequent queries 'till the end
of transactions.

I think it would help to leave application hanlde
transactions by itself (your "autocommit off" mode was
designed for this, wasn't it ?).

Many thanks in advance,

Tommaso Cucinotta <t.cucinotta@sssup.it>