当前位置: 技术问答>java相关
请教各位,如何在JSP中调用SQL 过程?
来源: 互联网 发布时间:2015-07-16
本文导语: 本人现在在写一个东东,想实现输入日期,接着调用一个MS Sql Server 中的过程,返回查询结果,然后显示结果。但是不知道如何实现调用,如何传值给过程,如何接受返回结果,请教各位高手了,谢谢! ...
本人现在在写一个东东,想实现输入日期,接着调用一个MS Sql Server 中的过程,返回查询结果,然后显示结果。但是不知道如何实现调用,如何传值给过程,如何接受返回结果,请教各位高手了,谢谢!
|
你是要这个吗?
假设你的存储过程是这样的 aa(in a char,out b integer);
Connection con = null;
.....
CallableStatement cs =null;
try {
cs = con.prepareCall("{call aa(?,?)}");
cs.setInt(1,"2002-02-02");
cs.registerOutParameter(2,java.sql.Types.INTEGER);
cs.execute();
int i = cs.getInt(2);
}
catch( SQLException sqle ) {
}
finally {
try { cs.close(); }
catch (Exception e) { e.printStackTrace(); }
try { con.close(); }
catch (Exception e) { e.printStackTrace(); }
}
假设你的存储过程是这样的 aa(in a char,out b integer);
Connection con = null;
.....
CallableStatement cs =null;
try {
cs = con.prepareCall("{call aa(?,?)}");
cs.setInt(1,"2002-02-02");
cs.registerOutParameter(2,java.sql.Types.INTEGER);
cs.execute();
int i = cs.getInt(2);
}
catch( SQLException sqle ) {
}
finally {
try { cs.close(); }
catch (Exception e) { e.printStackTrace(); }
try { con.close(); }
catch (Exception e) { e.printStackTrace(); }
}