Getting a table's metadata without using resultset in java

后端 未结 1 1321
无人及你
无人及你 2020-12-11 08:07

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

1条回答
  •  感情败类
    2020-12-11 08:45

    DatabaseMetaData md = connection.getMetaData();
    

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

    0 讨论(0)
提交回复
热议问题