0

将数据保存到数据库时出错。DataAdapter.Fill(ds,"Table") 在将数据类型 nvarchar 转换为数字时抛出 SqlException 错误。

private void btnSave_Click_1(object sender, EventArgs e)
{
    da = new SqlDataAdapter();
    da.SelectCommand = new SqlCommand("select * from Measurement where ID = @ID", con);
    da.SelectCommand.Parameters.AddWithValue("@ID", txtID.Text);
    SqlCommandBuilder cb = new SqlCommandBuilder(da);
    da.Fill(ds, "Measurement"); //(SqlException Unhandled)Error converting data type nvarchar to numeric.

    if (String.IsNullOrEmpty(txtCellNo.Text.Trim()))
    {
        MessageBox.Show("Please enter Cell Number");
    }
    else
    {
        try
        {
            dr = ds.Tables["Measurement"].Rows[0];

            dr["CellNumber"] = txtCellNo.Text.Trim();
            dr["FirstName"] = txtFirstName.Text;
            dr["LastName"] = txtLastName.Text;
            dr["Shirt"] = txtShirt.Text;
            dr["Pant"] = txtPant.Text;
            dr["DueDate"] = txtDueDate.Text;
            dr["Date"] = txtDate.Text;

            cb.GetUpdateCommand();
            da.Update(ds, "Measurement");
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
    }
}
4

3 回答 3

0

您将@ID作为字符串传递给数据库(从数据库的角度来看是 nvarchar)。设置命令参数时,您需要转换/转换txtID.Text为适当的数值。@ID我怀疑您需要调用int.Parse(txtID.Text)(假设 ID 是数据库中的整数)。

顺便说一句,您可能还需要防止在txtID.Text. 在这种情况下,您可以使用:

int id;
if (!int.TryParse(txtID.Text, out id))
{
    //an invalid id was supplied so stop processing and warn user
}
于 2013-02-06T14:29:23.897 回答
0

这一行:

da.SelectCommand.Parameters.AddWithValue("@ID",txtID.Text);

txtID.Text是您需要转换为整数的字符串。见Int.TryParse

于 2013-02-06T14:29:42.357 回答
0

看起来txtID.Text可能不是整数。你应该先转换它。尝试:

da.SelectCommand.Parameters.AddWithValue("@ID",Convert.ToInt32(txtID.Text));
于 2013-02-06T14:30:29.640 回答