Item Search V1

Still needs testing.
This commit is contained in:
NMerz
2020-10-05 22:54:43 -04:00
parent c96a40f0df
commit 68051fdaca
5 changed files with 100 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ public class Item {
LocalDateTime retrievedDate;
Integer fetchCounts;
Item(ResultSet itemRow) throws SQLException {
public Item(ResultSet itemRow) throws SQLException {
this.productID = itemRow.getInt(1);
System.out.println(this.productID);
this.chainID = itemRow.getInt(2);