JDBC locking on processResults

Поиск
Список
Период
Сортировка
От Mike Heath
Тема JDBC locking on processResults
Дата
Msg-id 1114037590.6558.13.camel@localhost
обсуждение исходный текст
Ответы Re: JDBC locking on processResults  (Kris Jurka <books@ejurka.com>)
Re: JDBC locking on processResults  (Oliver Jowett <oliver@opencloud.com>)
Список pgsql-jdbc
I'm using Postgresql 8.0.2 on SuSE Linux Professional 9.2.  I'm using
Java version 1.5.0_02.  I'm using The 8.0.311 build of the JDBC driver.

I've spent all day trying to debug this problem and the following is as
far as I've gotten.  I've been stepping through the JDBC driver code and
when I get to org.postgresql.jdbc2.AbstractJdbc2Statement (object is
actually of type Jdbc3PreparedStatement) in method int[] executeBatch()

Value in queries (as a string produced to toString() method) ="insert
into assets (report_id, create_date, modify_date, asset_name, parent_id,
asset_type_id, create_user_id, modify_user_id, account_id, disabled,
hidden, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"

The value in parameterLists.SimpleParameterList =
"[java.lang.Object@19afdb9, 2005-04-20 16:36:01.566000-0600, 2005-04-20
16:36:01.566000-0600, Image test, java.lang.Object@19afdb9, 9, 1, 1, 1,
0, 0, 565]"

This all looks simple enough.  At least, I can't see anything out of the
ordinary here.

However, when I trace down to
org.postgresql.core.V3.QueryExecutorImpl.processResults(ResutlHandler,
int) (line 1122) it makes a call to pgStream.ReceiveChar() and just
locks.  It appears as though it's waiting for something from the server
and the server isn't sending it.  I don't see any errors in the server
logs.

I'm at the end of my rope.  Any ideas or suggestions and what else I can
do to debug this?  A great deal of other queries and updates run just
fine on this database.  It's this particular case that is broken and I
can't figure it out.

-Mike


В списке pgsql-jdbc по дате отправления:

Предыдущее
От: David Gagnon
Дата:
Сообщение: Is closing a ResulSet, Statement or connection act as a rollback when a transaction is not commited? Not clear in JavaDoc.
Следующее
От: Kris Jurka
Дата:
Сообщение: Re: JDBC locking on processResults