我想在用户选择时在SQL数据库中保存图像。到目前为止,我已输入此代码。这不会给我任何错误,但不会添加到数据库中。 我认为SQL语句有问题。
有人可以帮助我吗?
这是我的代码:
public void addImages(string tag1,string tag2,string tag3,string status,string fileName)
{
try
{
byte[] image = null;
FileStream fsstream = new FileStream(fileName,FileMode.Open,FileAccess.Read);
BinaryReader br = new BinaryReader(fsstream);
image = br.ReadBytes((int)fsstream.Length);
SqlCommand command = new SqlCommand("INSERT INTO [ImagesAndTags] (Images,Tags,Tag2,Tag3,Status) values (@IMG,'" + tag1 + "','" + tag2 + "','" + tag3 + "','" + status + "')", con);
con.Open();
command.Parameters.Add(new SqlParameter("@IMG",image));
SqlDataReader reader = command.ExecuteReader();
MessageBox.Show("Added Successfully!!!", "", MessageBoxButtons.OK, MessageBoxIcon.Information);
while (reader.Read()) { }
}
catch(Exception ex) { }
}
答案 0 :(得分:3)
ExecuteReader
返回数据。在你的情况下,你不是。您只需尝试在数据库中插入一行。这就是你需要使用ExecuteNonQuery
的原因。
并像对image
变量所做的那样参数化其他插入值。还可以使用using
statement来处理数据库连接和命令。
int insertedRowCount = command.ExecuteNonQuery();
if(insertedRowCount > 0)
MessageBox.Show("Added Successfully!!!", "", MessageBoxButtons.OK, MessageBoxIcon.Information);
答案 1 :(得分:0)
从数据库中存储的DATA中删除所有反斜杠,单反转逗号和双引号。
将其替换为一些常量字符串,然后再将其检索回来将其转换为原始字符串。