have combined INSERT and UPDATE sql statement syntax here...usually set refers to updating a specific column...
it should be either:
INSERT INTO orders (name,s hop, nomenclature, nsn, part_num, quantity, date, rec, ser_num, JCN) values("SSgt Parr", "Weapon Maint.", "Indicator Breech", '9999-99-999-9999', '7631221-10' , '2', "Jan 17, 2003", '0', '', '')
or
UPDATE orders SET name = "SSgt Parr", shop = "Weapon Maint.", nomenclature = "Indicator Breech", nsn = '9999-99-999-9999', part_num = '7631221-10', quantity = '2', date = "Jan 17, 2003", rec = '0', ser_num = '', JCN = ''" where somthing = something usually primary key
hth