文件名称:NC开发文档
文件大小:1.08MB
文件格式:PDF
更新时间:2022-02-03 08:01:07
NC JAVA
Accsubjdoc // 通过系统提供的会计科目接口查询所有会计科目 Accsubjdoc itf = (Accsubjdoc) NCLocator.getInstance().lookup(Accsubjdoc.class.getName()); nc.vo.bd.b02.AccsubjVO[] targetSubjVos = itf.queryAccsubjVOs(pk_glorgbook, null, false); AccperiodVO //查询会计期间 AccperiodVO[] accperiodVOs = (AccperiodVO[]) HYPubBO_Client.queryByCondition(AccperiodVO.class, " nvl(dr,0)=0 "); addBetch a.无参批量更新 String sql = "update bd_deptdoc set dept_code =„aaa‟ where dept_code=„bbb‟"; session.addBatch(sql); //添加需要执行的同构SQL int rows = session.executeBatch(); //执行 b.有参批量更新 String sql = "update bd_deptdoc set dept_code =„aaa‟ where dept_code=?”; SQLParameter param = new SQLParameter(); //构造参数对象 param.addParam(“bbb”); //添加参数 session.addBatch(sql, param); //添加需要执行的同构SQL int rows = session.executeBatch(); //执行 afterEdit