I want to know if there is any way to check if a column in a table is virtual in java? I was trying the ResultSetMetaData no luck there:
rsmd.isWritable(column);
rsmd.isReadOnly(column);
rsmd.isDefinitelyWritable(column);
I need to check if it is a virtual column in order to know if i should insert/modify it or not, any ideas?