JDBC Statement – DatabaseMetaData GetTables Example

Using the DatabaseMetaData interface you can obtain meta data all the tables in the entire database or as is my case for a particular (Catalog and Schema). We will be using the getTables() method, passing in the following four parameters (“tutorial”, “dbo”, “%”, null). If you would prefer to get … Continue reading JDBC Statement – DatabaseMetaData GetTables Example