I'm connecting to an external database which I'm not able to populate with testdata to do a proper integration test suite for my DAO on. As an alternative I would like to test the structure of the tables. For example that the tables I'm using has columns with certain names and types. How is this possible with Java/Spring?
In Oracle SQL Developer I can use desc to get what I want, is there something similar I can do from Spring?