Got an error stating that “Syntax error in INSERT INTO statement“.
Solution: need the values part of the insert into statement.
insert into fuel_limit (fuel_limit_code, fuel_limit_description) values (?fuel_limit_code, ?fuel_limit_description)
Also, it looks like your you need to use the description parameter when setting the value in the line right above the ExecuteNonQuery statment.