JDBC locking on processResults

From: Mike Heath <mheath(at)avaloninc(dot)com>
To: pgsql-jdbc(at)postgresql(dot)org
Subject: JDBC locking on processResults
Date: 2005-04-20 22:53:10
Message-ID: 1114037590.6558.13.camel@localhost
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(dot)lang(dot)Object(at)19afdb9, 2005-04-20 16:36:01.566000-0600, 2005-04-20
16:36:01.566000-0600, Image test, java(dot)lang(dot)Object(at)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

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Kris Jurka 2005-04-20 23:15:20 Re: JDBC locking on processResults
Previous Message David Gagnon 2005-04-20 18:02:19 Is closing a ResulSet, Statement or connection act as a rollback when a transaction is not commited? Not clear in JavaDoc.