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);
            }
        }
    }
  • 相关阅读:
    RHEL 6.3安装(超级详细图解教程)[转载]
    CentOS下设置vimrc,添加文件注释信息以及设置tab 键为4 格
    Centos 设置时区和时间以及增加中文输入法
    虚拟机上CentOS6.5 无法上网的解决方法
    LoadRunner 11安装及测试环境搭建
    LR11录制回放出现中文乱码以及录制时一直跳到360浏览器的解决方法
    第 3 章 变量和表达式
    第 2 章 编写 C# 程序
    第 1 章 C# 简介
    jQuery Mobile的学习时间bottonbutton的事件学习
  • 原文地址:https://www.cnblogs.com/loaderman/p/10007501.html
Copyright © 2011-2022 走看看