need help

Started by Kevin Matthewsover 21 years ago3 messagesgeneral
Jump to latest
#1Kevin Matthews
dataport10@yahoo.com

subscribe
end

i am getting this error

org.apache.jasper.JasperException: ERROR: current transaction is aborted, queries ignored until end of transaction block

Please help

#2Richard Huxton
dev@archonet.com
In reply to: Kevin Matthews (#1)
Re: need help

Kevin Matthews wrote:

subscribe end

i am getting this error

org.apache.jasper.JasperException: ERROR: current transaction is
aborted, queries ignored until end of transaction block

It appears an error has occurred in your current transaction, which has
caused it to abort. Until you issue a ROLLBACK, any further queries will
be ignored.

You probably need to look in PostgreSQL's logs to see what caused the
error, or check the error codes from SQL commands issued from jasper's code.

--
Richard Huxton
Archonet Ltd

#3Jim Wilson
jimw@kelcomaine.com
In reply to: Richard Huxton (#2)
Re: need help

Kevin Matthews said:

subscribe
end

i am getting this error

org.apache.jasper.JasperException: ERROR: current transaction is aborted,

queries ignored until end of transaction block

This just indicates that an update failed within the current transaction
scope. Your application needs to rollback when an update or insert fails
otherwise you will get this error message.

Best,

Jim Wilson