* @param data
* @return
*/
private Bag getBagObject(ResultSet data, int memberid) {
try {
Bag b = new Bag(memberid);
while(data.next()){
b.addItem(data.getInt("item"), data.getInt("quantity"));
}
return b;
} catch (Exception e) {
e.printStackTrace();
return null;