Hi,
I have an app that is not using Stored Procedures (it is using Hibernate) to insert records into tables.
It can save <null> into nullable-number fields just fine, but is always inserting a zero-length string in a nullable-varchar field. The app developer is having a hard time figuring out how to get it to save a proper null.
Is there anything I can do on the DB side to convert the zero-length string to a null short of using an INSTEAD OF trigger? Stored procs are not currently an option.