trying to debug a insert query where I'm getting a field too small and after quadruple checking still can't find which one, 30 fields
so to eliminate where, I created a new table, copied 1st 15 fields into it, took insert query, copied it, then edited it down to the 1st 15 fields, deleted the 2nd 15 fields from the command.Parameters.AddWithValue("somefield", formfield.Text) statements, so thought I should be set to go testing inserting 15 fields instead of 30 into a new table, but keep getting error, "Too few parameters. Expected 30."


somehow even with the new table and changed insert query it still seems to think I'm invoking the original query into the original table???