Getting the 'Description' of a field from an Access DB
Hi,How can we get rhe contents of the 'Description' of a field in an Access DB?
For instance,DatabaseMetaData dbmd = con.getMetaData();ResultSet rs=dbmd.getColumns(null,null,"%","%");You should read JDK API about DatabaseMetaData.getColumns to know more about what in that rs object:)