When I try to update a table I take the above error no matter how many parmameters I use with the "Expected #" always being the number I'm passing +1. I don't have any MS manuals so I'm not sure where to turn. Here's the pertinent code that generated the error.
private static final String UPDATE = "UPDATE ReachPct SET REACH_Percent = ?";
prepStmt = JDBC.getConnection().prepareStatement(UPDATE);
prepStmt.setDouble(1,reachPercent);
prepStmt.executeUpdate();
Anyone know what other parameter MS is expecting?
TIA,
Row