0

I understood we can read data from a table using command in Schema crawler.

How to do that programatically in java. I could see example to read schema , table etc. But how to get data?

Thanks in advance.

1 Answers1

0

SchemaCrawler allows you to obtain database metadata, including result set metadata. Standard JDBC provides you a way to get data by using java.sql.ResultSet, and you can use SchemaCrawler for obtainting result set metadata using schemacrawler.utility.SchemaCrawlerUtility.getResultColumns(ResultSet).

Sualeh Fatehi, SchemaCrawler

Sualeh Fatehi
  • 4,700
  • 2
  • 24
  • 28