DatabaseMetaData metadata = con.getMetaData(); metadata.getTables(catalog, schemaPattern, tableNamePattern, types);
What fields are required to get a list of tables?
If you want a list of all tables, you should use:
metadata.getTables(null, null, null, new String[]{"TABLE"});
resultSet.getString(3)
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 years ago
viewed
1620 times
active