为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

2 回答

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();
}


}


0 回复 有任何疑惑可以回复我~

大概就在右下角

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信