问答详情
源自:2-1 JDBC存储过程之调用无参存储过程

请问这里的java代码在哪里在下呢?

找不到,,

提问者:lzllz 2017-04-15 09:19

个回答

  • dandelionLYY
    2017-08-26 11:35:51

    public class ProduceDao {
    	public static void select_nofilter() throws SQLException {
    		// 1.获得连接
    		Connection conn = DBUtil.getConnection();
    		// 2.获得CallableStatement
    		CallableStatement cs = conn.prepareCall("call sp_select_nofilter() ");
    		// 3.执行存储过程
    		cs.execute();
    		// 4.处理返回结果:结果集,出参
    		ResultSet rs = cs.getResultSet();
    		while (rs.next()) {
    			System.out.println(" 姓名:"+rs.getString("user_name")+
    					" 邮箱:"+ rs.getString("email") +" 电话:"+ rs.getString("mobile"));
    		}
    	}


    public class TestProduce {
    public static void main(String[] args) throws SQLException {
    ProduceDao pd=new ProduceDao();
    pd.select_nofilter();
    }
    
    
    }


  • indexing
    2017-04-16 12:06:59

    大概就在右下角