I'm having a little trouble retrieving data from a MySQL database in my Java servlet. For reference, my web app is constructed like a library - you can check out items, and check them back in.
When you first click "check out", your request gets sent to an admin, let's call that person a librarian, who must approve or disapprove your request. Let's say I login, pick some items, and hit "checkout". Here's what happens:
- The items get added to my "cart"
- In the master list of items on the database, each item has a
VARCHAR
calledSTATUS
, which identifies whether or not that item is"In Stock"
. For each item I chose, that variable gets changed to a unique identifier associated with my user account. - My request gets added to a table called
requests_list
Approval, generic check-in, and so on work fine. What doesn't work so well is clicking "disapprove". Here's what should happen:
- The request gets removed from
requests_list
- The requestor's "cart" of items gets truncated
- The items themselves get declared
"In Stock"
Here's what's been happening:
- The request gets removed from
requests_list
- The requestor's "cart" of items gets truncated
- Only the first item in the cart gets checked back in
Here's the code I'm working with so far:
stmt.execute("DELETE FROM requests_list WHERE UNIQUE_ID = '"
+ selected_ID + "'"); // this seems to work
stmt.execute("TRUNCATE TABLE checkout_" + selected_ID); // also seems to work
ResultSet all_gear = stmt
.executeQuery("SELECT * FROM gear_master_list");
while (all_gear.next()) {
if (all_gear.getString(5).equals(selected_ID)) {
stmt.execute("UPDATE gear_master_list SET STATUS = 'In Stock' WHERE ID_NUM = "
+ all_gear.getInt(6));
}
}
all_gear.close();
Some notes, to explain a few of the variables:
selected_ID
- The librarian clicks a drop-down menu to access the list of users who have made requests. After he or she chooses one, that user's unique identifier becomesselected_ID
checkout_selected_ID
- Your "cart" is a table in the database. This table is named after your unique ID, so if my unique ID were bunnies, my table would becheckout_bunnies
stmt
and theConnection
it draws itsStatement
from are all valid and workinggear_master_list
is the table with all the gear,all_gear.getInt(6)
references the unique inventory number that each piece of gear has, andall_gear.getString(5)
is theSTATUS
variable I mentioned
I have tried doing this differently, such that the code runs through all the items in the cart, updates the status, then truncates the table. That didn't work either - it was still finicky about updating the status, and the table wouldn't truncate.
TL;DR: My ResultSet
is only getting me one row from my table (I think), even though I'm using a while
loop and there's more than one row. What's going on? Is there a better, more efficient way to do this?
This may be a concurrent modification issue - your first query holds open a cursor on the database, and while looping over that cursor you're performing updates on that same data, all within the same transaction.
Could you try this?