I have a situation where a column on a table may or may not exist. Long story short, we have an optional feature that, if implemented, will tack on a column to a table. If a client chooses not to have the feature, they will not have the column.
I am trying to define a property in my DAO for it, in hopes of Hibernate not blowing up if the column is not there. Perhaps by setting the value to null. But, Hibernate is throwing an "invalid identifier" exception.
Does anyone know if you can do this? Have a column mapping that if the column is there Hibernate populates it but if it's not present, all is well and it's just null?
Many thanks.