Package | Description |
---|---|
org.modeshape.connector.meta.jdbc |
Modifier and Type | Method and Description |
---|---|
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) |
DBMetadata |
MetadataCollector.getDatabaseMetadata(Connection conn)
Return metadata information about the database to which
connection is connected. |
DBMetadata |
JdbcMetadataCollector.getDatabaseMetadata(Connection conn) |
List<ForeignKeyMetadata> |
MetadataCollector.getForeignKeys(Connection conn,
String catalogName,
String schemaName,
String tableName,
String fkColumnName)
Return the list of foreign keys import by a table 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<ForeignKeyMetadata> |
JdbcMetadataCollector.getForeignKeys(Connection conn,
String catalogName,
String schemaName,
String tableName,
String fkColumnName) |
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–2016 JBoss, a division of Red Hat. All rights reserved.