代码拉取完成,页面将自动刷新
package com.dhxy.dao;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import com.dhxy.entity.InDepot;
public class IndepotDao extends DataBaseDao {
public List<InDepot> chaxun() throws ClassNotFoundException, SQLException {// 查找所有用户信息方法
load();
List<InDepot> arrayList = new ArrayList();// 用户信息存到集合
ResultSet rs = stmt.executeQuery("SELECT * FROM Indepot");// mysql语句
InDepot indepot = null;// 定义User变量
while (rs.next()) {
indepot = new InDepot();
indepot.setComnumber(rs.getInt("comnumber"));
indepot.setIndenum(rs.getInt("indenum"));
indepot.setIndepottime(rs.getDate("indepottime"));
indepot.setSuppliernum(rs.getInt("suppliernum"));
indepot.setInprice(rs.getDouble("inprice"));
}
closeAll();
return arrayList;// 放回ArrayList集合
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。