zoukankan      html  css  js  c++  java
  • 使用CablleStatement调用存储过程

    importcom.loaderman.util.JdbcUtil;
    
    import java.sql.CallableStatement;
    import java.sql.Connection;
    import java.sql.ResultSet;
    
    import org.junit.Test;
    
    /**
     * 使用CablleStatement调用存储过程
    
     */
    public class Demo1 {
    
        /**
         * 调用带有输入参数的存储过程
         * CALL pro_findById(4);
         */
        @Test
        public void test1(){
            Connection conn = null;
            CallableStatement stmt = null;
            ResultSet rs = null;
            try {
                //获取连接
                conn = JdbcUtil.getConnection();
                
                //准备sql
                String sql = "CALL pro_findById(?)"; //可以执行预编译的sql
                
                //预编译
                stmt = conn.prepareCall(sql);
                
                //设置输入参数
                stmt.setInt(1, 6);
                
                //发送参数
                rs = stmt.executeQuery(); //注意: 所有调用存储过程的sql语句都是使用executeQuery方法执行!!!
                
                //遍历结果
                while(rs.next()){
                    int id = rs.getInt("id");
                    String name = rs.getString("name");
                    String gender = rs.getString("gender");
                    System.out.println(id+","+name+","+gender);
                }
                
            } catch (Exception e) {
                e.printStackTrace();
                throw new RuntimeException(e);
            } finally {
                JdbcUtil.close(conn, stmt ,rs);
            }
        }
        
        /**
         * 执行带有输出参数的存储过程
         * CALL pro_findById2(5,@NAME);
         */
        @Test
        public void test2(){
            Connection conn = null;
            CallableStatement stmt = null;
            ResultSet rs = null;
            try {
                //获取连接
                conn = JdbcUtil.getConnection();
                //准备sql
                String sql = "CALL pro_findById2(?,?)"; //第一个?是输入参数,第二个?是输出参数
                
                //预编译
                stmt = conn.prepareCall(sql);
                
                //设置输入参数
                stmt.setInt(1, 6);
                //设置输出参数(注册输出参数)
                /**
                 * 参数一: 参数位置
                 * 参数二: 存储过程中的输出参数的jdbc类型    VARCHAR(20)
                 */
                stmt.registerOutParameter(2, java.sql.Types.VARCHAR);
                
                //发送参数,执行
                stmt.executeQuery(); //结果不是返回到结果集中,而是返回到输出参数中
                
                //得到输出参数的值
                /**
                 * 索引值: 预编译sql中的输出参数的位置
                 */
                String result = stmt.getString(2); //getXX方法专门用于获取存储过程中的输出参数
                
                System.out.println(result);
    
            } catch (Exception e) {
                e.printStackTrace();
                throw new RuntimeException(e);
            } finally {
                JdbcUtil.close(conn, stmt ,rs);
            }
        }
    }
  • 相关阅读:
    JSTL日期格式化用法
    JSTL详解1
    Mybatis插入后返回主键
    JSTL详解2
    jsp与jsp之间传参数如何获取
    [转] J2EE面试题集锦(附答案)
    [转] 修炼一名程序员的职业水准(林庆忠原创)
    [转] 应聘Java笔试时可能出现问题及其答案(第三部分)
    [转] 与大家一起分享JAVA源代码查询网站
    [转] 应聘Java笔试时可能出现问题及其答案(第四部分)
  • 原文地址:https://www.cnblogs.com/loaderman/p/10007501.html
Copyright © 2011-2022 走看看