我有一个名为Recipe的SQL-CE表,在这个表中有4列ID(int),Name(nvarchar),Instructions(nvarchar)和image(binary)。
这就是用户界面的样子:
当您单击“添加新”按钮时,我希望用户输入名称,说明,然后单击“添加图像”按钮并选择图像。然后,我希望包含文本“内存中没有图像”的标签更改为“内存中的图像”表示图像正在等待写入数据库。最后,当用户单击“保存”图标时,我希望保存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数据库。
答案 0 :(得分: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 <)来检查上述字段是否具有导航记录集的值/ em> 如果我的记忆对我有用的话)