0

我正在尝试将数据插入数据库

但是按下按钮后,它会显示错误信息

无法将参数值从 String 转换为 Int32。

我需要帮助

我不知道该怎么办了。谢谢!!

private void InsertNewRecord()
            {
                SqlCommand cmdInsert = new SqlCommand();
                cmdInsert.Connection = cn;
                cmdInsert.CommandType = CommandType.Text;
                cmdInsert.CommandText = "INSERT INTO Customers (" +
                    " LastName, FirstName, MiddleName, ContactNumber, EmailAddress, BirthDate, CompanyName, Address, BillingAddress, CustomerStatus, CustPicture" +
                    ") VALUES (" +
                    " @LastName, @FirstName, @MiddleName, @ContactNumber, @EmailAddress, @BirthDate, @CompanyName, @Address, @BillingAddress, @CustomerStatus, @CustPicture" +
                    ") ";
                cmdInsert.Parameters.Add("@LastName", SqlDbType.VarChar, 50).Value = txtLastName.Text;
                cmdInsert.Parameters.Add("@FirstName", SqlDbType.VarChar, 50).Value = txtFirstName.Text;
                cmdInsert.Parameters.Add("@MiddleName", SqlDbType.VarChar, 50).Value = txtMiddleName.Text;
                cmdInsert.Parameters.Add("@ContactNumber", SqlDbType.Int).Value = txtContactNumber.Text;
                cmdInsert.Parameters.Add("@EmailAddress", SqlDbType.VarChar, 100).Value = txtEmailAddress.Text;
                cmdInsert.Parameters.Add("@BirthDate", SqlDbType.Date).Value = dtpBirthdate.Value;
                cmdInsert.Parameters.Add("@CompanyName", SqlDbType.VarChar, 50).Value = txtCompanyName.Text;
                cmdInsert.Parameters.Add("@Address", SqlDbType.VarChar, 100).Value = txtAddress.Text;
                cmdInsert.Parameters.Add("@BillingAddress", SqlDbType.VarChar, 100).Value = txtBillingAddress.Text;
                cmdInsert.Parameters.Add("@CustomerStatus", SqlDbType.VarChar, 10).Value = cboCustomerStatus.Text;


                Image bmp;
                System.IO.MemoryStream ms;

                if (PicImage.Image == null)
                {
                    bmp = Bitmap.FromFile(Application.StartupPath + @"\Anonymous.jpg"); //read the default picture
                    ms = new System.IO.MemoryStream();
                    bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp); //put it in the memory stream
                    cmdInsert.Parameters.Add("@CustPicture", SqlDbType.Image).Value = ms.GetBuffer(); //add it as the value of custpictureparameter.
                }
                else
                {
                    bmp = Bitmap.FromFile(openFileDialog1.FileName);
                    ms = new System.IO.MemoryStream();
                    bmp.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp);
                    cmdInsert.Parameters.Add("@CustPicture", SqlDbType.Image).Value = ms.GetBuffer();
                }
                cmdInsert.ExecuteNonQuery();
                Console.WriteLine("Successfully added row to Customers table!");

            } //end of InsertNewRecord()

}

4

3 回答 3

3

即使没有单步执行您的代码,这将表明错误在哪里,我几乎可以保证它在这一行:

cmdInsert.Parameters.Add("@ContactNumber", SqlDbType.Int).Value = txtContactNumber.Text;

你说参数是一个整数,你正在传递一个字符串。您需要将 的值转换为txtContactNumber.Text整数。

尝试int.Parse或最好int.TryParse

于 2013-06-17T08:53:04.250 回答
0

您需要将 ContactNumber 转换为整数。

int contactNumber;
Int32.TryParse(ContactNumber.Text, out contactNumber);

然后加:

cmdInsert.Parameters.Add("@ContactNumber", SqlDbType.Int).Value = contactNumber;
于 2013-06-17T08:55:20.607 回答
0

其他答案不正确。如果值格式正确,参数将自动转换。

来自MSDN

如果应用程序指定了数据库类型,那么当提供者将数据发送到服务器时,绑定值将转换为该类型。如果提供程序支持 IConvertible 接口,它会尝试转换任何类型的值。如果指定的类型与值不兼容,可能会导致转换错误。

因此,请确保文本框中没有空格:

cmdInsert.Parameters.Add("@ContactNumber", SqlDbType.Int).Value = txtContactNumber.Text.Trim();
于 2013-06-17T09:39:05.230 回答