我已經連接到我的數據庫:如何檢索查詢結果集的從MySQL中的Java
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數據庫中取出?
我很困惑你真正想要什麼。你想獲取信息或插入信息到數據庫? – 2012-08-07 23:40:51
[從結果集中獲取數據](http://www.exampledepot.com/egs/java.sql/GetRsData.html) – 2012-08-07 23:42:08
但他也提到他需要將數組列表存儲在數據庫中。 – 2012-08-07 23:44:45