JBoss Community

Re: [JDBCExceptionReporter] Large Objects may not be used in auto-commit mode.

created by José Luis Granda in jBPM - View the full discussion

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

Start a new discussion in jBPM at Community