conn = CM.getConnection();
cstam = conn.prepareCall(" { ? = CALL FN_QUERY_ACCIDENTS_BY_PAGER(?,?,?,?,?,?,?,?,?,?) }");
cstam.registerOutParameter(1, OracleTypes.CURSOR);
cstam.setLong(2, 0);//对应 P_LISTOREXPORT NUMBER, --查询类型 列表 0,导出 1
cstam.setLong(3, agencyId);
cstam.setLong(4, unitId);
cstam.setString(5, numberPlate);
cstam.setString(6, driver);
cstam.setString(7, beginTime);
cstam.setString(8, endTime);
cstam.setInt(9, start);
cstam.setInt(10, limit);
cstam.registerOutParameter(11, OracleTypes.NUMBER);
cstam.execute();
rs = (ResultSet) cstam.getObject(1);
count = cstam.getInt(11);
" { ? = CALL FN_QUERY_ACCIDENTS_BY_PAGER(?,?,?,?,?,?,?,?,?,?) }"
调用函数注意事项:
1. call 一定要小写,不然会卡在 execute();
2. 一定要用花括号包围
3. 函数返回 ? = 接收。