Hi guys, I am using C# windows based GUI and MS-Access as my database. Unfortunately, I cannot insert a record with a numeric value, this means that one of my field is a number data type. Below is my code;
strItemCode = lvProducts.Items[i].SubItems[0].Text.Trim();
iQty = int.Parse(lvProducts.Items[i].SubItems[2].Text);
cmAdjustedItems.CommandText = "INSERT INTO tblAdjustedItems VALUES(@itemcode, @adjustmentid, @qty)";
cmAdjustedItems.Parameters.AddWithValue("@itemcode", strItemCode);
cmAdjustedItems.Parameters.AddWithValue("@adjustmentid", strAdjustmentID);
cmAdjustedItems.Parameters.AddWithValue("@qty", iQty);
cmAdjustedItems.ExecuteNonQuery();
All the variables in my code were properly declared. Please give an idea on how am I going to solved this issue.