dao.inerst.dap.update 能不能生成执行的sql 而不执行。有个批量数据交换的程序,单挑执行比较慢,我是打算先把sql缓存下来,然后 一下子批量执行sql.
update可以传list的
chain 不是一个实体。如下的,可以把 chain 生成sql
int dbrecordCount = targetDao.count(toTableName, searchKeyCnd); if(dbrecordCount>0) { targetDao.update(toTableName, chain, searchKeyCnd); }else { targetDao.insert(toTableName, chain); }