Ok, I have this so far:
Code java:String getCust = "SELECT FirstName, LastName FROM Customer WHERE FirstName = ?"; PreparedStatement ps = con.prepareStatement(getCust); ps.setString(1, "Alexander"); ResultSet rs = ps.executeQuery();
I just can't figure out how to get it be able to be stored? I've attempted an ArrayList and failed (maybe did it wrong??) Also, I'm just trying to populate a jTable is what i am shooting for ultimately. Anyone have any advice? :confused:
