Uses of Class
org.modeshape.connector.meta.jdbc.JdbcMetadataException

Packages that use JdbcMetadataException
org.modeshape.connector.meta.jdbc The classes that make up the connector that accesses the database schema metadata exposed by JDBC drivers for existing relational databases. 
 

Uses of JdbcMetadataException in org.modeshape.connector.meta.jdbc
 

Methods in org.modeshape.connector.meta.jdbc that throw JdbcMetadataException
 List<String> MetadataCollector.getCatalogNames(Connection conn)
          Return the list of catalog names that currently exist in the database to which connection is connected.
 List<String> JdbcMetadataCollector.getCatalogNames(Connection conn)
           
 List<ColumnMetadata> MetadataCollector.getColumns(Connection conn, String catalogName, String schemaName, String tableName, String columnName)
          Return the list of columns that currently exist in the database to which connection is connected within the named catalog (if catalogName is non-null), named schema (if schemaName is non-null), and named table.
 List<ColumnMetadata> JdbcMetadataCollector.getColumns(Connection conn, String catalogName, String schemaName, String tableName, String columnName)
           
 List<ProcedureMetadata> MetadataCollector.getProcedures(Connection conn, String catalogName, String schemaName, String procedureName)
          Return the list of procedures that currently exist in the database to which connection is connected within the named catalog (if catalogName is non-null) and named schema (if schemaName is non-null).
 List<ProcedureMetadata> JdbcMetadataCollector.getProcedures(Connection conn, String catalogName, String schemaName, String procedureName)
           
 List<String> SqlServerMetadataCollector.getSchemaNames(Connection conn, String catalogName)
           
 List<String> MetadataCollector.getSchemaNames(Connection conn, String catalogName)
          Return the list of schema names that currently exist in the database to which connection is connected within the named catalog.
 List<String> JdbcMetadataCollector.getSchemaNames(Connection conn, String catalogName)
           
 List<TableMetadata> MetadataCollector.getTables(Connection conn, String catalogName, String schemaName, String tableName)
          Return the list of tables that currently exist in the database to which connection is connected within the named catalog (if catalogName is non-null) and named schema (if schemaName is non-null).
 List<TableMetadata> JdbcMetadataCollector.getTables(Connection conn, String catalogName, String schemaName, String tableName)
           
 



Copyright © 2008-2010 JBoss, a division of Red Hat. All Rights Reserved.