Retrieves a description of the table hierarchies that are defined in a particular schema in this database.

Note: This method is not currently supported with Microsoft SQL Server 2005 JDBC Driver. When used, this method will always return an empty result set.

public java.sql.ResultSet getSuperTables(java.lang.String catalog,
                                         java.lang.String schemaPattern,
                                         java.lang.String tableNamePattern)

Parameters

catalog

A string that contains the catalog name.

schemaPattern

A string that contains the schema name pattern.

tableNamePattern

A string that contains the table name pattern.

Return Value

A SQLServerResultSet object.

Exceptions

SQLServerException

Remarks

This getSuperTables method is specified by the getSuperTables method in the java.sql.DatabaseMetaData interface.

See Also