I am trying to insert data in to a table with an auto increment primary key. My table structure is like this:
int:PK varchar:Item_ID varchar:Item_name int:FK_
Your table has four columns and your inserts are only inserting three values. Try removing a column from the table, or alternatively inserting four values when inserting a row.