我使用JOOQ向MySql插入记录,这是我的代码
if (f.getConnection()!=null) {
UserRecord us = new UserRecord();
us.setAccountId(UInteger.valueOf(accountId));
us.setCode(code);
us.setEnd(new java.sql.Date(end.getTime()));
us.setStart(new java.sql.Date(start.getTime()));
us.setPhoneNumberId(UInteger.valueOf(phnNUmberId));
us.store();
}
(f是数据库连接工厂类)
它给出了
线程“main”中的异常org.jooq.exception.DetachedException:无法执行
查询。未配置连接
但是数据库连接是空的,可能是什么原因? (选择查询使用相同的连接)
答案 0 :(得分:6)
您的用户记录没有“附加”到Factory
(jOOQ 2.0,在更新的版本中,它被称为Configuration
)。您有两种选择:
// Attach the user record prior to calling "store"
f.attach(us);
us.store();
// Create a pre-attached user record:
UserRecord us = f.newRecord(Tables.USER);
// [...]
us.store();
如果未附加,jOOQ无法发现应该使用Factory(配置)来存储您的记录。