问题描述
Stringsql="{?=callhtgl..SP_CIMS_ZDCX(?,?,?,?,?)}";CallableStatementcstmt=con.prepareCall(sql);cstmt.registerOutParameter(1,Types.INTEGER);cstmt.setString(2,"111");cstmt.setInt(3,0);cstmt.setString(4,"");cstmt.setInt(5,10);cstmt.setInt(6,0);cstmt.execute();rs=cstmt.getResulset();rs每次取出都是null,谁能帮我分析下为什么吗?SP_CIMS_ZDCX存储过程可以返回2个结果集
解决方案
解决方案二:
CallableStatement
时间: 2024-10-30 04:45:59