我正在为一个使用JOOQ库查询SQL的项目编写UT,我需要模拟SQL响应。
我已经尝试过关注this manual,但是,我们将JOOQ与纯SQL一起使用,这意味着我们没有任何字段或表的预定义类。
我的问题是 - 如何在不提供Field作为参数的情况下定义Result对象?或定义模拟字段参数?
Result<Record2<Integer, String>> result = create.newResult(AUTHOR.ID, AUTHOR.LAST_NAME); // replace the AUTHOR.ID and AUTHOR.LAST_NAME with some string for example
result.add(create.newRecord(AUTHOR.ID, AUTHOR.LAST_NAME));
result.get(0).setValue(AUTHOR.ID, 1);
result.get(0).setValue(AUTHOR.LAST_NAME, "Orwell");
mock[0] = new MockResult(1, result);
我注意到我可以定义一个新字段,但Field实现的接口非常广泛,所以我正在寻找更简单的东西。
谢谢!
答案 0 :(得分:3)
每当您在没有代码生成器的情况下使用jOOQ时,您将需要使用纯SQL API动态构造Table
和Field
引用。引用你的例子:
// Dynamic field creation
Field<Integer> id = field(name("AUTHOR", "ID"), SQLDataType.INTEGER);
Field<String> lastName = field(name("AUTHOR", "LAST_NAME"), SQLDataType.VARCHAR);
// Same as before
Result<Record2<Integer, String>> result = create.newResult(id, lastName);
result.add(create.newRecord(id, lastName).values(1, "Orwell"));
mock[0] = new MockResult(1, result);
有关详细信息,请参阅本手册的以下部分: