公司准备把数据库把MYSQL换成oracle。 系统有用dbunit写的测试DAO的代码。 但跑起来的时候总是有AmbiguousTableNameException 这个一场抛出在CLEAN_INSTALL的时候。上网找了
http://dbunit.sourceforge.net/faq.html#ambiguoustablenameexception
[quote]
Why I get a "AmbiguousTableNameException"?
This error occurs when no schema is specified and that DbUnit detect that it is getting columns information from multiple tables having the same name and located in different schemas.
You can solve this problem in three different ways:
1. Provide the schema name when creating the database connection. Note that for Oracle you must specify the schema name in uppercase.
2. Ensure that the connection is restricted to access only one schema.
3. Enable the qualified table names feature.
[/quote]
开始的时候以为这里的database connection是javax里的Connection。 其实这里的是dbunit里面的IDatabaseConnection dbUnitConn = new DatabaseConnection(conn);
换成new DatabaseConnection(conn,[b]SCHEMA_NAME[/b]) 就ok了。 注意SCHMEA_NAME需要大写。
http://dbunit.sourceforge.net/faq.html#ambiguoustablenameexception
[quote]
Why I get a "AmbiguousTableNameException"?
This error occurs when no schema is specified and that DbUnit detect that it is getting columns information from multiple tables having the same name and located in different schemas.
You can solve this problem in three different ways:
1. Provide the schema name when creating the database connection. Note that for Oracle you must specify the schema name in uppercase.
2. Ensure that the connection is restricted to access only one schema.
3. Enable the qualified table names feature.
[/quote]
开始的时候以为这里的database connection是javax里的Connection。 其实这里的是dbunit里面的IDatabaseConnection dbUnitConn = new DatabaseConnection(conn);
换成new DatabaseConnection(conn,[b]SCHEMA_NAME[/b]) 就ok了。 注意SCHMEA_NAME需要大写。
本文介绍了解决在Oracle数据库使用DbUnit进行测试时出现的AmbiguousTableNameException问题的方法。通过设置正确的模式名称,可以避免因表名冲突引发的异常。
276

被折叠的 条评论
为什么被折叠?



