Обсуждение: ERROR: SET TRANSACTION ISOLATION LEVEL must be called before any query

Поиск
Список
Период
Сортировка

ERROR: SET TRANSACTION ISOLATION LEVEL must be called before any query

От
"David Wall"
Дата:
I am getting this error reported back from JDBC.  I'm not sure if this is
from JDBC, or from the Postgresql 7.1.

Message:   ERROR:  SET TRANSACTION ISOLATION LEVEL must be called before any
query
SQLState:  null
ErrorCode: 0


It seems to occur if run two simultaneous "mass delete" operations.  It
appears as though the database connection goes away, since my code then
attempts to reconnect and I get repeated sql exceptions:

Message:   No results were returned by the query.
SQLState:  null
ErrorCode: 0

I have to restart the programs to get them oprational again.

Thanks,
David



Re: ERROR: SET TRANSACTION ISOLATION LEVEL must be called before any query

От
"David Wall"
Дата:
> Message:   ERROR:  SET TRANSACTION ISOLATION LEVEL must be called before
any query

Oops.  Sorry.  It looks like it was a bug in the connection pool class that
I've been magically using for a couple of years now.  Apparently the usage
just never ran into the problem, or there's a difference in the Tomcat
servlet engine I'm using that was driving the database.  The code was
reusing the connection for all pool calls from the same thread, and this
somehow created the conflict, probably because of the threadpools used in
Tomcat.

David