5

画像処理用のビジュアル C# プログラムに取り組んでいます。Visual C# (Windows フォーム) と ADO.NET を使用して、SQL データベースに画像を追加しようとしています。

filestream メソッドを使用して画像をバイナリ形式に変換しましたが、画像のバイトがデータベースに保存されません。データベース イメージの列に < バイナリ データ > と表示されていて、データが保存されていません。

私は(ストアドプロシージャの有無にかかわらず)挿入するための多くの方法を試しましたが、データベースで常に同じことを取得しています。

private void button6_Click(object sender, EventArgs e)
{
   try
   {
      byte[] image = null;
      pictureBox2.ImageLocation = textBox1.Text;
      string filepath = textBox1.Text;
      FileStream fs = new FileStream(filepath, FileMode.Open, FileAccess.Read);
      BinaryReader br = new BinaryReader(fs);
      image = br.ReadBytes((int)fs.Length);
      string sql = " INSERT INTO ImageTable(Image) VALUES(@Imgg)";
      if (con.State != ConnectionState.Open)
         con.Open();
      SqlCommand cmd = new SqlCommand(sql, con);
      cmd.Parameters.Add(new SqlParameter("@Imgg", image));
      int x= cmd.ExecuteNonQuery();
      con.Close();
      MessageBox.Show(x.ToString() + "Image saved");
   }
}

コードでエラーが発生していません。画像が変換され、データベースでエントリが行われますが、SQL データベースで < Binary Data > と表示されます。

4

4 に答える 4

5

選択したファイル ストリームをバイト配列に変換する必要があります。

        FileStream FS = new FileStream(filepath, FileMode.Open, FileAccess.Read); //create a file stream object associate to user selected file 
        byte[] img = new byte[FS.Length]; //create a byte array with size of user select file stream length
        FS.Read(img, 0, Convert.ToInt32(FS.Length));//read user selected file stream in to byte array

これで問題なく動作します。データベースにはまだ < Binary data > が表示されますが、memorystream メソッドを使用して画像に戻すことができます。

ありがとうございます...

于 2013-11-08T07:33:06.247 に答える
0

VARBINARY画像を保存するために使用していると仮定すると(そうあるべきです)、SqlParameter をより厳密に型指定する必要がある場合があります。

だから代わりに

cmd.Parameters.Add(new SqlParameter("@Imgg", image));

以下を使用します。

cmd.Parameters.Add("@Imgg", SqlDbType.VarBinary).Value = (SqlBinary)image;

System.IO.File.ReadAllBytesを使用してコードを短縮し、ファイル パスをバイト配列に変換することもできます。

于 2013-11-06T18:47:24.260 に答える
0

次のストアド プロシージャを実行します。

create procedure prcInsert
(
   @txtEmpNo varchar(6),
   @photo image
)
as
begin
   insert into Emp values(@txtEmpNo, @photo)
end

表従業員:

create table Emp
(
   [txtEmpNo] [varchar](6) NOT NULL,
   imPhoto image
)
于 2013-12-04T10:00:46.830 に答える