Hi,
ENV: Netbeans 6.8, Java Swing app
I have changed the JPA provider from EclipseLink 2 to Hibernate 3.2.5 and now the message below is displayed when the bid is persisted.
Code:
Exception in thread "AWT-EventQueue-0" javax.persistence.PersistenceException: org.hibernate.PropertyValueException: not-null property references a null or transient value: com.az.paystation.model.Bid.bidderNumber
Code:
entityManager.persist(bid);
Here is the column
Code:
@Column(name = "BIDDER_NUMBER", nullable = false, length = 30)
private String bidderNumber;
Is it possible to turn off the checking until the transaction is committed?
Thanks