José Luis Granda [
http://community.jboss.org/people/jlgranda81] created the discussion
"Re: [JDBCExceptionReporter] Large Objects may not be used in auto-commit
mode."
To view the discussion, visit:
http://community.jboss.org/message/607293#607293
--------------------------------------------------------------
Hi, I had the same problem. Fix it overwriting org.drools.persistence.info.WorkItemInfo,
change
private @Lob
byte[] workItemByteArray;
by
@Basic(fetch = FetchType.LAZY)
byte[] workItemByteArray;
Hibernate change the column defitnition to workitembytearray bytea, and works for me :)
--------------------------------------------------------------
Reply to this message by going to Community
[
http://community.jboss.org/message/607293#607293]
Start a new discussion in jBPM at Community
[
http://community.jboss.org/choose-container!input.jspa?contentType=1&...]