Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
DatabaseMetaData metadata = con.getMetaData();
metadata.getTables(catalog, schemaPattern, tableNamePattern, types);

What fields are required to get a list of tables?

share|improve this question

1 Answer

up vote 4 down vote accepted

If you want a list of all tables, you should use:

metadata.getTables(null, null, null, new String[]{"TABLE"});
share|improve this answer
For clarity, table names will en up in resultSet.getString(3) – MonoThreaded Apr 22 at 15:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.