簡體   English   中英

在SQL Server 2008數據庫中更新映像后出現錯誤

[英]Getting error after updating image in Sql server 2008 database

我正在VS 2010 C#中開發Winform應用程序。 我已經開發了一種表單,可以在其中插入和更新用戶詳細信息。

我的更新用戶表單如下圖所示

![更新用戶屏幕] [1]

http://i.stack.imgur.com/iZaAJ.png

編碼更新是

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using Microsoft.VisualBasic;
using System.Drawing.Imaging;
using System.IO;

namespace SampleApplication
{
public partial class UserUpdate : Form
{
    public UserUpdate()
    {
        InitializeComponent();
    }
    SqlDataAdapter da;
    SqlConnection con = new SqlConnection("user id=sa; password=123;initial     catalog=Inventory;data source=Aniket-PC");
    SqlCommand cmd;
    MemoryStream ms;
    byte[] photo_array;
    DataSet ds;
    int rno = 0;
    string str;
    private void nameTxt_Validating(object sender, CancelEventArgs e)
    {
        if (nameTxt.Text.Trim().Length == 0)
        {
            namewarning.Visible = true;
        }
        else
        {
            namewarning.Visible = false;
        }
    }

    private void Update_Load(object sender, EventArgs e)
    {
        contTxt.MaxLength = 10;
        retriveData();
        retriveImg();
    }
    void retriveImg()
    {
        con.Open();
        cmd = new SqlCommand("Select Logo from Register where UserName='" + uNameTxt.Text + "'", con);
        da = new SqlDataAdapter(cmd);
        ds = new DataSet("MyImage");
        da.Fill(ds, "MyImage");
        DataRow myRow;
        myRow = ds.Tables["MyImage"].Rows[0];
        photo_array = (byte[])myRow["Logo"];
        ms = new MemoryStream(photo_array);
        profPic.Image = Image.FromStream(ms);
        con.Close();
    }

    void retriveData()
    {
        con.Open();
        cmd = new SqlCommand("Select * from Register where UserName='"+uNameTxt.Text+"'",con);
        SqlDataReader read = cmd.ExecuteReader();
        while (read.Read())
        {
            nameTxt.Text = (read["Name"].ToString());
            passTxt.Text = (read["Password"].ToString());
            conPassTxt.Text = (read["Password"].ToString());
            emailTxt.Text = (read["EmailId"].ToString());
            addTxt.Text = (read["Address"].ToString());
            contTxt.Text = (read["ContactNo"].ToString());
            DORTxt.Text = (read["DOR"].ToString());
            validity.Text = "Account Valid till "+(read["Validity"].ToString());
        }
        read.Close();
        con.Close();            
    }

    private void AttachBtn_Click(object sender, EventArgs e)
    {
        // Open  image by OpenFiledialog and show it in PicturBox.
        try
        {
            //filter only image format files.
            openFileDialog1.Filter = "jpeg|*.jpg|bmp|*.bmp|all files|*.*";
            DialogResult res = openFileDialog1.ShowDialog();
            if (res == DialogResult.OK)
            {
                Image img = new Bitmap(openFileDialog1.FileName);

                //inserting image in PicturBox
                profPic.Image = img.GetThumbnailImage(127, 128, null, new IntPtr());
                openFileDialog1.RestoreDirectory = true;
            }
        }
        catch
        {
            MessageBox.Show("Cannot upload image");
        }
    }
    private void UpdateBtn_Click_1(object sender, EventArgs e)
    {
        string DOM = dateTimePicker1.Value.ToShortDateString();
        if (namewarning.Visible == true || picError.Visible == true || PassError.Visible == true || emailwarningImg.Visible == true)
        {
            MessageBox.Show("Please correct the marked fields");
        }
        else
        {
            //cmd = new SqlCommand("update Register set (Name,Password,EmailId,Address,ContactNo,Logo,DOM) values('" + nameTxt.Text.Trim() + "','" + passTxt.Text.Trim() + "','" + emailTxt.Text.Trim() + "','" + addTxt.Text.Trim() + "','" + contTxt.Text.Trim() + "',@Logo,'"  + DOM+ "')", con);
            str = string.Format("update Register set Name='{0}', Password='{1}',EmailID='{2}',Address='{3}',ContactNo='{4}',Logo='{5}',DOU='{6}' where UserName='{7}'", nameTxt.Text.Trim(), passTxt.Text.Trim(), emailTxt.Text.Trim(),addTxt.Text.Trim(), contTxt.Text.Trim(), @"Logo" ,DOM,uNameTxt.Text);
            con_photo();
            //con.Open();
            cmd = new SqlCommand(str, con);
            int count= cmd.ExecuteNonQuery();
            if (count > 0)
                MessageBox.Show("Sucsess");
            else
                MessageBox.Show("need to work");
        }
    }
    void con_photo()
    {
        if (profPic.Image != null)
        {
            ms = new MemoryStream();
            profPic.Image.Save(ms, ImageFormat.Jpeg);
            byte[] photo_array = new byte[ms.Length];
            ms.Position = 0;
            ms.Read(photo_array, 0, photo_array.Length);
            cmd.Parameters.AddWithValue("@Logo", photo_array);
        }
    }

當我運行該應用程序時,它執行得很好,並向我顯示成功消息,但是當我再次嘗試查看更新用戶表單時,它在屏幕截圖錯誤下方顯示

http://i.stack.imgur.com/7z1Rx.png

在retriveImg()

請幫我解決這個問題。

您沒有將圖像字節傳遞給UPDATE命令,而是將包含單詞Logo的字符串傳遞給了。

另外: 避免使用字符串連接或String.Format創建SQL命令。 請改用參數化查詢!


另外:不要使用NVARCHAR字段來存儲圖像字節(除非首先從它們創建BASE64字符串),而應使用VARBINARYIMAGE列。


問題在以下行中:

str = string.Format("update Register set ... ,Logo='{5}' ...", ..., @"Logo", ...);

如您所見,您正在格式化字符串,但沒有插入圖像中的字節,而是插入了“ Logo”一詞。

假設Logo列的類型為IMAGEVARBINARY ,我將這樣寫:

byte[] photo_array = null;

if (profPic.Image != null)
{
    MemoryStream ms = new MemoryStream();
    profPic.Image.Save(ms, ImageFormat.Jpeg);

    photo_array = ms.GetBuffer();
}

if (photo_array != null)
{
    SqlCommand cmd = new SqlCommand("UPDATE Register SET Logo=@logo", connection);
    cmd.Parameters.AddWithValue("@logo", imageBytes);
    cmd.ExecuteNonQuery();
}

也許我錯了,但我會盡力做到這一點

photo_array = (byte[])myRow["Logo"];
if photo_array.length.trim()>0
{
    ms = new MemoryStream(photo_array);  
    profPic.Image = Image.FromStream(ms);

}
con.Close();

當字符串的長度為0時,可能會出現此錯誤

另一件事是您沒有將圖像保存在數據庫中

// C#代碼

SqlCommand cmdSelect =新的SqlCommand(“從ID = 1的表中選擇ImageValue”,ObjCon); ObjCon.Open();

        byte[] barrImg = (byte[])cmdSelect.ExecuteScalar();
        ObjCon.Close();
         string strfn = Convert.ToString(DateTime.Now.ToFileTime());
        FileStream fs = new FileStream("C:\\Temp\\1.txt", FileMode.CreateNew, FileAccess.Write);
        fs.Write(barrImg, 0, barrImg.Length);
        fs.Flush();
        fs.Close();

// 1.txt文件將在c:\\ temp文件夾中創建

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM