我正在尝试学习如何将数据保存到数据库以及从数据库中加载数据,但是遇到了问题。目前,我有一个名为Component
的类,其内容如下:
public class Componente {
private int code;
private String description;
private double price;
private int quantity;
private List<Componente> previous;
private List<Componente> incompatible;
我还有一个名为Storage
的类,其中包含以下内容:
public class Storage {
private List<Component> stock;
在其他类中,我只能创建简单的变量,例如String或Integers,因此我能够创建save和load方法,但是对于这些类,我却完全迷失了,因为不仅存在要保存/返回的列表,而且还有递归列表。到目前为止,我对组件的了解是:
public void save(Component c)throws SQLException{
Connection con = null;
con = Connect.connect();
PreparedStatement st = con.prepareStatement("INSERT INTO component
VALUES(?,?,?,?,?,?)");
st.setInt(1, c.getCode());
st.setString(2, c.getDescription());
st.setDouble(2, c.getPrice());
st.setInt(2, c.getQuantity());
//Missing the last 2 variables
st.executeUpdate();
con.close();
}
public Component load(Object key) throws SQLException {
Component c = null;
Connection con = Connect.connect();
PreparedStatement ps = con.prepareStatement("select * from component
where code = ?");
ps.setInt(1, code);
ResultSet rs = ps.executeQuery();
if(rs.next()){
c = new
Component(rs.getInt("code"),rs.getString("description"),
rs.getDouble("price"),rs.getInt("quantity"));
}
con.close();
return c;
}
有一些例外需要处理,但是在那部分我认为我很好。另外,如果我能够为组件做到这一点,那么我也许也可以将其设置为存储,所以现在我认为这个问题已经足够大了。
答案 0 :(得分:1)
根据我对您的问题的理解。您可能需要使装入函数的return
类型类似于列表。在rs.next()
块中建立列表,并在完成后返回。
public List<Component> load(Object key) throws SQLException {
List<Component> componentList= new ArrayList<Component>();
Component c = null;
Connection con = Connect.connect();
PreparedStatement ps = con.prepareStatement("select * from component
where code = ?");
ps.setInt(1, code);
ResultSet rs = ps.executeQuery();
if(rs.next()){
c = new Component(rs.getInt("code"),rs.getString("description"),
rs.getDouble("price"),rs.getInt("quantity"));
componentList.add(c);
}
con.close();
return componentList;
}