我已经连接到我的数据库:
Connection con = DriverManager.getConnection(
"jdbc:mysql://instance23389.db.xeround.com:15296/Inventory","user","password");
PreparedStatement Statement = con.prepareStatement("Select * from inventory");
ResultSet result = Statement.executeQuery();
while(result.next()) {
//What to put here?
}
这是我想存储在该数据库中的数组列表:
static ArrayList<Product> Chart=new ArrayList<Product>();
并且这些对象存储在 arraylist 中:
double Total;
String name;
double quantity;
String unit;
double ProductPrice;
我需要使用什么通用代码来将 arraylist 存储在 MySQL 数据库中?我需要使用什么通用代码将数组列表从 MySQL 数据库中取出?