what does this error means ?
java.sql.SQLException: The transaction is no longer active - status: 'Committed'. No further JDBC access is allowed within this transaction.
what does this error means ?
when this error occurs .
i am not getting clue where to struck .
any idea where to look for ?
Message was edited by:
Unknown_Citizen
Better to ask on a hibernate forum, but you seem to be trying to reuse a closed transaction. If you have auto-commit set to ttrue, try changing it to false, the explicitly calling commit when you are done.
> Better to ask on a hibernate forum, but you seem to
> be trying to reuse a closed transaction. If you have
> auto-commit set to ttrue, try changing it to false,
> the explicitly calling commit when you are done.
Might be worth finding out why something is trying to use a closed transaction first, before changing your entire transaction management idiom, though