Hi,
I'm trying to make an addition to a table with an autonumber field, the sql code i'm using is
String sql = "update Individual set Points=?, Rebounds=?, Assists=?, Steals=?, Date=? where ID = ?";
This adds values to all the fields apart from the autonumber field which is the...