Package org.dbunit.operation
Class AbstractOperation
java.lang.Object
org.dbunit.operation.DatabaseOperation
org.dbunit.operation.AbstractOperation
- Direct Known Subclasses:
AbstractBatchOperation,DeleteAllOperation,InsertIdentityOperation,RefreshOperation
Abstract base
DatabaseOperation implementation providing shared
row-iteration and column-filtering behavior.- Since:
- Jan 17, 2004
- Version:
- $Revision$
- Author:
- Manuel Laflamme
-
Field Summary
Fields inherited from class org.dbunit.operation.DatabaseOperation
CLEAN_INSERT, DELETE, DELETE_ALL, INSERT, NONE, REFRESH, TRUNCATE_TABLE, UPDATE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected StringgetQualifiedName(String prefix, String name, IDatabaseConnection connection) Qualifies the given table or column name with the given schema/catalog prefix, applying the connection's configured escape pattern.Methods inherited from class org.dbunit.operation.DatabaseOperation
CLOSE_CONNECTION, execute, TRANSACTION
-
Constructor Details
-
AbstractOperation
public AbstractOperation()
-
-
Method Details
-
getQualifiedName
Qualifies the given table or column name with the given schema/catalog prefix, applying the connection's configured escape pattern.- Parameters:
prefix- the schema or catalog prefix.name- the table or column name to qualify.connection- the database connection providing the escape pattern configuration.- Returns:
- the qualified name.
-