Getting a table's metadata without using resultset in java

java, jdbc

Solution

DatabaseMetaData md = connection.getMetaData();

You can learn a lot about tables from this `DatabaseMetaData` interface.

Problem

Is there any way to get the meta-data of a particular table even before executing select statement.

Original source