私はmsaccessでこのItemsテーブルを持っています
Items(Table)
Item_Id(autonumber)
Item_Name(text)
Item_Price(currency)
このコードを使用してレコードを挿入しようとしています。
OleDbConnection myCon = new OleDbConnection(ConfigurationManager.ConnectionStrings["DbConn"].ToString());
OleDbCommand cmd = new OleDbCommand();
cmd.CommandType = CommandType.Text;
cmd.CommandText = "insert into Items ([Item_Name],[Item_Price]) values ('" + itemNameTBox.Text + "','" + Convert.ToDouble(itemPriceTBox.Text) + "')";
cmd.Connection = myCon;
myCon.Open();
cmd.ExecuteNonQuery();
System.Windows.Forms.MessageBox.Show("An Item has been successfully added", "Caption", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
myCon.Close();
コードはエラーなしで実行されていますが、最後にテーブルにレコードが見つかりません。私が行っている間違いは何ですか?