1

我有一个名为 Recipe 的 SQL-CE 表,该表中有 4 列 ID(int)、Name(nvarchar)、Instructions(nvarchar) 和 image(binary)。

这是 UI 的样子:

在此处输入图像描述

当您单击“添加新”按钮时,我希望用户输入名称、说明,然后单击 AddImage 按钮并选择图像。然后,我希望包含文本“内存中没有图像”的标签更改为“内存中的图像”,以表示图像正在等待写入数据库。最后,当用户单击“保存”图标时,我希望保存 3 个 nvarchar 字段,以及作为二进制文件写入表的图像。

这是代码:

添加图像按钮

private void button1_Click(object sender, EventArgs e)
        {
            int size = -1;
            DialogResult result = openFileDialog1.ShowDialog(); // Show the dialog.
            if (result == DialogResult.OK) // Test result.
            {
                string file = openFileDialog1.FileName;
                try
                {
                    string text = File.ReadAllText(file);
                    size = text.Length;
                }
                catch (IOException)
                {
                }
            }


        }

保存图标

 private void recipeBindingNavigatorSaveItem_Click(object sender, EventArgs e)
        {
            this.Validate();
            this.recipeBindingSource.EndEdit();
            this.tableAdapterManager.UpdateAll(this.recipeDataSet);
            MessageBox.Show("Recipe Saved!", "Save Item");

        }

最后,我希望将数据库中保存的每个相应图像显示在图片框中的“添加图像”按钮下方,因此需要将其从二进制格式转换回以显示图像。

我的问题

通过调出OpenFileDialog屏幕选择文件后,如何更改“内存中无图像”标签以显示“内存中的图像” 。然后我需要添加什么代码才能使保存按钮单击事件将图像作为二进制文件写入我的 SQL-CE db。

4

1 回答 1

2

获得文件后,您可以将其读入字节数组,然后将该数组复制到当前记录中的正确字段

类似的东西

OpenFileDialog openFileDialog = new OpenFileDialog();

// if the user selects a file
if(openFileDialog.ShowDialog() == DialogResult.OK)
{
    // now open the file ..
    FileStream fs = new FileStream(openFileDialog.FileName, FileMode.Open, FileAccess.Read);

    // or you may use 
    // FileStream fs = (FileStream)openFileDialog.OpenFile();

    BinaryReader br = new BinaryReader(fs);
    Byte[] buffer = br.ReadBytes((Int32)fs.Length);
    br.Close();
    fs.Close();
}

// now copy content of 'buffer' to the correct filed of the recordset

要更改标签,您应该能够通过订阅正确的 BindingSource 事件(如果我没记错的话, CurrentItemChanged )来检查上述文件是否有值。

于 2013-05-28T06:02:57.390 回答