org.dbunit.database
Class AmbiguousTableNameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.dbunit.DatabaseUnitException
org.dbunit.dataset.DataSetException
org.dbunit.database.AmbiguousTableNameException
- All Implemented Interfaces:
- Serializable
public class AmbiguousTableNameException
- extends DataSetException
This exception is thrown by DatabaseDataSet
when a multiple tables
having the same name are accessible. This usually occurs when the database
connection have access to multiple schemas containing identical table names.
Possible solutions:
1) Use a database connection credential that has access to only one database
schema.
2) Specify a schema name to the DatabaseConnection
or
DatabaseDataSourceConnection
constructor.
3) Enable the qualified table name support (see How-to documentation).
- Since:
- May 1, 2002
- Version:
- 1.0
- Author:
- Manuel Laflamme
- See Also:
- Serialized Form
AmbiguousTableNameException
public AmbiguousTableNameException()
AmbiguousTableNameException
public AmbiguousTableNameException(String msg)
AmbiguousTableNameException
public AmbiguousTableNameException(String msg,
Throwable e)
AmbiguousTableNameException
public AmbiguousTableNameException(Throwable e)
Copyright © 2002-2011. All Rights Reserved.