JAVA中如何调用存储过程
发布网友
发布时间:2022-04-26 19:04
我来回答
共1个回答
热心网友
时间:2022-05-04 02:03
Connection conn = null;
CallableStatement cStmt = null;
PreparedStatement pStmt = null;
ResultSet rs = null;
conn = ConnectionManagerDao.getConn();
//关键代码
cStmt = conn.prepareCall("{call proc_PagingVie(?,?,?,?,?,?,?,?,?) }");
//call 存储过程名(?,?,?)-问号的是参数