懒码农。。。。。。

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年10月28日

摘要: CallableStatement stmt=null;String id=null;try{ stmt=connect.prepareCall("{call testpro(?,?,?)}"); stmt.setString(1,"123"); stmt.setString(2,"321"); stmt.registerOutParameter(3,Types.VARCHAR); stmt.execute(); id=stmt.getString(3);}catch(Exception ex){ ...}finally{ ...} 阅读全文
posted @ 2011-10-28 10:47 阿彬 阅读(199) 评论(0) 推荐(1) 编辑