我有一个名为 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。