Re: rollback ignored until end of transaction block

From: Scott Marlowe <smarlowe(at)g2switchworks(dot)com>
To: Kevin Grittner <Kevin(dot)Grittner(at)wicourts(dot)gov>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: rollback ignored until end of transaction block
Date: 2005-11-22 20:55:21
Message-ID: 1132692921.28788.46.camel@state.g2switchworks.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On Tue, 2005-11-22 at 14:51, Kevin Grittner wrote:
> Is there any context where this would make sense?:
>
> org.postgresql.util.PSQLException: ERROR: current transaction is
> aborted, commands ignored until end of transaction block
> at
> org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:1512)
> at
> org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:1297)
> at
> org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:188)
> at
> org.postgresql.jdbc2.AbstractJdbc2Connection.executeTransactionCommand(AbstractJdbc2Connection.java:617)
> at
> org.postgresql.jdbc2.AbstractJdbc2Connection.rollback(AbstractJdbc2Connection.java:654)
> <application code>

There was an error earlier in your transaction. This error is simply
telling you that nothing you do until you close this transaction will be
accepted and acted upon. You need to get the earlier error that caused
the transaction to abort.

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message Oliver Jowett 2005-11-22 21:53:15 Re: rollback ignored until end of transaction block
Previous Message Kevin Grittner 2005-11-22 20:51:02 rollback ignored until end of transaction block