使用c#将映像保存到sql server 2012

时间:2016-03-09 14:34:30

标签: c# sql sql-server sql-server-2012

我的目标是将图像插入我的sql server数据库。 数据库中的image列定义为varbinary(max)类型 但是当我执行命令时,Image列只包含字节数组中的第一个值!

插入图片脚本:

public void InsertImage()
    {
        string CS = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;

        Image img = Image.FromFile(@"D:\MyProjects\Registry Biometrics Insight\FingerPrintImages\1_2.bmp");
        byte[] arr;
        using (MemoryStream ms = new MemoryStream())
        {
            img.Save(ms, System.Drawing.Imaging.ImageFormat.Bmp);
            arr = ms.ToArray();
        }

        DBLayer dblayer = new DBLayer(CS);

        SqlParameter[] sqlParams = new SqlParameter[1];
        sqlParams[0] = new SqlParameter("@Image", SqlDbType.VarBinary);
        sqlParams[0].Value = arr;

        dblayer.M_ExecuteSQLCommand("prc_Fingers_InsertImage", sqlParams);
    }

ExecuteSQLCommand脚本:

public int M_ExecuteSQLCommand(string StoredProcedureName, SqlParameter[] Parameters)
    {
        SqlCommand comm;
        try
        {
            using (SqlConnection conn = new SqlConnection(_P_ConnectionString))
            {

                comm = new SqlCommand();
                comm.Connection = conn;

                comm.CommandType = System.Data.CommandType.StoredProcedure;
                comm.CommandText = StoredProcedureName;
                comm.CommandTimeout = 0;

                comm.Parameters.Clear();
                for (int i = 0; i < Parameters.Length; i++)
                {
                    comm.Parameters.Add( Parameters[i] );
                }

                conn.Open();
                comm.ExecuteNonQuery();

                return 1;
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }

我的分类程序:

Procedure [dbo].[prc_Fingers_InsertImage]
(@Image varbinary = null)
 as
 begin


INSERT INTO [dbo].[Fingers]
           ([Image])
     VALUES
           (@Image)
 end

为什么我得到这个结果而不是保存字节数组中的所有值?

1 个答案:

答案 0 :(得分:0)

您可能希望使用“Read”方法将流转换为字节数组

ms.Read(arr, 0, ms.Length);

我甚至会在之前声明“arr”字节数组的大小,将数据流读入数组

arr = new byte[ms.length];

您可能还需要重置流指针,因为在Save方法之后,指针位于流的末尾:

ms.Seek(0, SeekOrigin.Begin);

最终的代码块将导致替换

arr = ms.ToArray();

ms.Seek(0, SeekOrigin.Begin);
arr = new byte[ms.length];
ms.Read(arr, 0, ms.Length);