使用 C# 和 SQL 将文本和图像添加到数据库

Adding text and image to database with C# and SQL

以下 windows 表单应用程序需要输入姓名、年龄、性别、描述和图像。

但是点击“保存信息”按钮时出现以下异常错误:

System.Data.SqlClient.SqlException: " Operand type clash: nvarchar is incompatible with image"

不太确定为什么脚本将图像解释为 nvarchar 数据类型。

这是该函数的存储过程。

ALTER PROCEDURE [dbo].[usp_Students_InsertNewStudent]
(
    @StudentName NVARCHAR(200)
    ,@Age NVARCHAR(50)
    ,@Gender NVARCHAR(50)
    ,@Description NVARCHAR(MAX)
    ,@Image IMAGE
    ,@CreatedBy NVARCHAR(50)
)
AS
    BEGIN
        INSERT INTO [dbo].[Students]
           ([StudentName]
           ,[Age]
           ,[Gender]
           ,[Description]
           ,[Image]
           ,[CreatedBy]
           ,[CreatedDate])
     VALUES
        (
            @StudentName
            ,@Age
            ,@Gender
            ,@Description
            ,@Image
            ,@CreatedBy
            ,GETDATE()
        )

    END

以及相关代码。


        private void SaveButton_Click(object sender, EventArgs e)
        {
            if(IsFormValid())
            {
                //Do Update Process
                using (SqlConnection con = new SqlConnection(AppConnection.GetConnectionString())) 
                {
                    using (SqlCommand cmd = new SqlCommand("usp_Students_InsertNewStudent", con))
                    {
                        cmd.CommandType = CommandType.StoredProcedure;

                        cmd.Parameters.AddWithValue("@StudentName", StudentNameTextBox.Text.Trim());
                        cmd.Parameters.AddWithValue("@Age", AgeTextBox.Text.Trim());
                        cmd.Parameters.AddWithValue("@Gender", GenderTextBox.Text.Trim());
                        cmd.Parameters.AddWithValue("@Description", DescriptionTextBox.Text.Trim());
                        cmd.Parameters.AddWithValue("@Image", IdPictureBox.ImageLocation);
                        cmd.Parameters.AddWithValue("@CreatedBy", LoggedInUser.UserName);


                        if (con.State != ConnectionState.Open)
                            con.Open();

                        cmd.ExecuteNonQuery();

                        MessageBox.Show("Student is successfully updated in the database.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        ResetFormControl();
                    }
                }
            }

        private bool IsFormValid()
        {
            if (StudentNameTextBox.Text.Trim() == string.Empty)
            {
                MessageBox.Show("Student name is Required.", "Validation Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                StudentNameTextBox.Focus();
                return false;
            }

            if (StudentNameTextBox.Text.Length >= 200)
            {
                MessageBox.Show("Student Name length should be less than or equal to 200 characters.", "Validation Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                StudentNameTextBox.Focus();
                return false;
            }
            return true;
        }

        private void UploadButton_Click(object sender, EventArgs e)
        {
            String ImageLocation = "";
            try
            {
                OpenFileDialog dialog = new OpenFileDialog();
                dialog.Filter = "Image Files(*.jpeg;*.bmp;*.png;*.jpg)|*.jpeg;*.bmp;*.png;*.jpg";

                if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                {
                   ImageLocation = dialog.FileName;
                   IdPictureBox.ImageLocation = ImageLocation;
                }
            }
            catch (Exception)
            {
                MessageBox.Show("An Error Occured", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }

数据库中的类型是IMAGE,是二进制数据类型。但是你试图将 path 保存到该字段中的图像文件。图片文件路径为text(VARCHAR).

您是要将图片保存在数据库中,还是图片路径的引用?如果是前者,数据库字段会更好VARBINARY,然后你实际上必须将图像的字节数组保存到字段中,而不是图像的路径。

如果是后者,字段类型应该是VARCHAR然后你就可以继续了。

你的问题是这一行:

cmd.Parameters.AddWithValue("@Image", IdPictureBox.ImageLocation);

这是图像所在位置的字符串。这是从 C# 字符串翻译成 SQL nvarchar.

您想插入实际图像。我怀疑这可能单独工作:

cmd.Parameters.AddWithValue("@Image", IdPictureBox.Image);

但我总是尽量避免 AddWithValue 因为它推断类型。

这是另一种方式:

cmd.Parameters.Add("@Image", SqlDbType.Image).Value = IdPictureBox.Image;

请注意,这明确定义了 SQL 类型,AddWithValue 推断了它。

要使其正常工作,请确保指定与架构匹配的 SqlDbType

下面是如何做同样的事情,例如,使用字节数组:

var image = IdPictureBox.Image;
using (var ms = new MemoryStream())
{
    image.Save(ms, image.RawFormat);
    cmd.Parameters.Add("@Image", SqlDbType.VarBinary).Value = ms.ToArray();
}

在任何一种情况下,使用此方法数据类型都是显式的。