Im connecting to an external database wich im 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 im using has columns with certain names and types. How is this possible with Java/Spring?
In Oracle SQL Developer I can use desc <tableName>; to get what I want, is there someting smilar i can do from Spring?