DBMNG数据库管理与应用

书籍是全世界的营养品。生活里没有书籍,就好像没有阳光;智慧里没有书籍,就好像鸟儿没有翅膀。
当前位置:首页 > MySQL > 应用案例

java调用储存过程实例

存储过程(Stored Procedure)是在大型数据库系统中,一组为了完成特定功能的SQL 语句集,经编译后存储在数据库中,用户通过指定存储过程的名字并给出参数(如果该存储过程带有参数)来执行它。

public static Integer getStock(String strdate, Long orgId, Long productId){

if(strdate==null||orgId==null||productId==null)

throw new IllegalArgumentException();

Integer stock = null;

//DataAccess da = DataAccessFactory.create(BPMConstant.ERP_DATABASE);

Connection conn=null;

CallableStatement fun = null;

try {

String callSQL = "{?=call getstock(?,?,?)} ";

//Connection conn = da.getConnection();

conn=DBUtil.getConnection(BPMConstant.ERP_DATABASE);

fun = conn.prepareCall(callSQL);

fun.registerOutParameter(1, oracle.jdbc.OracleTypes.NUMBER);

fun.setString(2, strdate);

fun.setLong(3, orgId);

fun.setLong(4, productId);

fun.execute();

stock = fun.getInt(1);

}catch(Exception e){

e.printStackTrace();

}finally{

DBUtil.closeCallableStatement(fun);

DBUtil.closeConnection(conn);

}

return stock;

本站文章内容,部分来自于互联网,若侵犯了您的权益,请致邮件chuanghui423#sohu.com(请将#换为@)联系,我们会尽快核实后删除。
Copyright © 2006-2023 DBMNG.COM All Rights Reserved. Powered by DEVSOARTECH            豫ICP备11002312号-2

豫公网安备 41010502002439号