All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.xmlmiddleware.xmldbms.filters.ResultSetFilter

java.lang.Object
   |
   +----org.xmlmiddleware.xmldbms.filters.FilterBase
           |
           +----org.xmlmiddleware.xmldbms.filters.ResultSetFilter

public class ResultSetFilter
extends FilterBase
A filter to retrieve a document fragment based on a result set. For internal use.

Version:
2.0
Author:
Ronald Bourret, 2001

Method Index

 o getCatalogName()
Get the catalog name used to map the result set.
 o getDatabaseName()
Get the database name used to map the result set.
 o getResultSetName()
Get the name used to identify the result set.
 o getSchemaName()
Get the schema name used to map the result set.
 o getTableName()
Get the table name used to map the result set.
 o setTable(String, String, String, String)
Set the name of the table used to map the result set.

Methods

 o getDatabaseName
 public final String getDatabaseName()
Get the database name used to map the result set.

Returns:
The database name
 o getCatalogName
 public final String getCatalogName()
Get the catalog name used to map the result set.

Returns:
The catalog name
 o getSchemaName
 public final String getSchemaName()
Get the schema name used to map the result set.

Returns:
The schema name
 o getTableName
 public final String getTableName()
Get the table name used to map the result set.

Returns:
The table name
 o setTable
 public void setTable(String databaseName,
                      String catalogName,
                      String schemaName,
                      String tableName) throws XMLMiddlewareException
Set the name of the table used to map the result set.

Parameters:
databaseName - Name of the database. If this is null, "Default" is used.
catalogName - Name of the catalog. May be null.
schemaName - Name of the schema. May be null.
tableName - Name of the table.
Throws: XMLMiddlewareException
Thrown if the table is not mapped as a class table.
 o getResultSetName
 public String getResultSetName()
Get the name used to identify the result set.

Returns:
The name.

All Packages  Class Hierarchy  This Package  Previous  Next  Index