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
-
getCatalogName()
- Get the catalog name used to map the result set.
-
getDatabaseName()
- Get the database name used to map the result set.
-
getResultSetName()
- Get the name used to identify the result set.
-
getSchemaName()
- Get the schema name used to map the result set.
-
getTableName()
- Get the table name used to map the result set.
-
setTable(String, String, String, String)
- Set the name of the table used to map the result set.
getDatabaseName
public final String getDatabaseName()
- Get the database name used to map the result set.
- Returns:
- The database name
getCatalogName
public final String getCatalogName()
- Get the catalog name used to map the result set.
- Returns:
- The catalog name
getSchemaName
public final String getSchemaName()
- Get the schema name used to map the result set.
- Returns:
- The schema name
getTableName
public final String getTableName()
- Get the table name used to map the result set.
- Returns:
- The table name
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.
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