我有一个dtatgridview,其中数据是从excel表中分配的,一个按钮将dtatgridview中的行插入到sql server表中,当我单击插入按钮并给出我在上面的问题标题中声明的异常时会发生错误值770214566是用户的移动号码,其数据类型是我表中的char(9),这是我的插入按钮的代码:
private void addCarsSaveBtn_Click(object sender, EventArgs e)
{
try
{
for (int i = 0; i < addCarsDgv.Rows.Count - 1; i++)
{
SqlCommand cmd = new SqlCommand("insert into cars(Id,name,carType,stickerNo,plotNo,carPath,mobile,whats) values (@id,@name,@type,@sticker,@plot,@path,@mobile,@whats)", cn);
cmd.Parameters.AddWithValue("@id", id + i);
cmd.Parameters.AddWithValue("@sticker", Convert.ToInt32(addCarsDgv.Rows[i].Cells[0].Value));
cmd.Parameters.AddWithValue("@name", addCarsDgv.Rows[i].Cells[1].Value);
cmd.Parameters.AddWithValue("@mobile", addCarsDgv.Rows[i].Cells[2].Value);
cmd.Parameters.AddWithValue("@whats", addCarsDgv.Rows[i].Cells[3].Value);
cmd.Parameters.AddWithValue("@type", addCarsDgv.Rows[i].Cells[4].Value);
cmd.Parameters.AddWithValue("@plot", addCarsDgv.Rows[i].Cells[5].Value);
cmd.Parameters.AddWithValue("@path", addCarsDgv.Rows[i].Cells[6].Value);
cmd.ExecuteNonQuery();
}
MessageBox.Show("All Done!");
}
catch (SqlException ex)
{
MessageBox.Show(ex.Message);
}
}
答案 0 :(得分:0)
在大多数情况下,AddWithValue
会正确解释您的意图。但是,在这种情况下,如果没有,你可以随时通过以下方式给予帮助:
.ToString()
可能会起作用......然后如果那些小数确实存在,我可以看到另一个错误。你可以说,这不是防弹的。另一个可能失败的例子是时间戳和日期如何转换为C#DateTime
数据类型以下是如何实施选项#2的示例:
cmd.Parameters.AddWithValue("@mobile", addCarsDgv.Rows[i].Cells[2].Value);
cmd.Parameters[3].SqlDbType = SqlDbType.Char;
这可能不言而喻,但“[3]”是因为它是第四个参数。
或者,正如其他人所建议的那样,请不要使用AddWithValue
。