DBUnit,运行插入选择语句
我使用 DbUnit 将数据加载到数据库中以进行一些集成测试。数据在平面 XML 文件中指定,如下所示:
<user id="2" name="bob" type="user">
<user id="1" name="john" type="admin">
但是,对于一个表,我希望插入的行基于已插入到其他表中的行。对我来说,实现此目的最方便的方法是运行 insert-select 语句,而不是像上面那样通过 XML 指定行。 DbUnit 是否支持通过这种方式混合插入选择语句和 XML 加载数据?
谢谢, 大学教师
I use DbUnit to load data into a DB for some integration tests. The data is specified in a flat XML file like so:
<user id="2" name="bob" type="user">
<user id="1" name="john" type="admin">
However in the case of one table, the rows I wish to insert are based on rows already inserted into other tables. The most convenient way for me to achieve this would be by running an insert-select statement, rather than specifying the rows via XML as above. Does DbUnit support loading data via a mixture of insert-select statements and XML in this fashion?
Thanks,
Don
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 DbUnit 尝试了许多不同的配置,但它们都基于纯 XML 文件。我没有看到将它们与 SELECT 语句混合的选项,而且我真的认为这个选项不存在。
I tried lots of different configurations with DbUnit, but all of them were based on plain XML files. I've seen no option to mix them with SELECT statements and I really think this option doesn't exist.