| Author |
tables and fields
|
Xinyi Zhang
Ranch Hand
Joined: Apr 28, 2001
Posts: 42
|
|
|
How to list tables in specific database and how to find field name and its data type using Java program? Thanks.
|
Xinyi
|
 |
Lasse Koskela
author
Sheriff
Joined: Jan 23, 2002
Posts: 11962
|
|
|
See the javadocs on java.sql.Connection#getMetaData(). Calling myConnection.getMetaData().getTables(null, null, null, null) should return all tables.
|
Author of Test Driven (2007) and Effective Unit Testing (2013) [Blog] [HowToAskQuestionsOnJavaRanch]
|
 |
 |
|
|
subject: tables and fields
|
|
|