本文介绍了从数据库中删除包含该图像的记录后,从文件夹中删除图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好



我的数据库中有一个包含两列ID和Image的表。

将我的图像插入数据库时​​使用以下代码。

hello

I have a table in my database containing two columns ID and Image.
when inserting my image into database i use the following code.

SqlCommand cmd = new SqlCommand("INSERT INTO info(ID,Img_Image) VALUES(@ID,@Img_image))

cmd.Parameters.AddWithValue("@ID", txtID.Text);
cmd.Parameters.AddWithValue("@Image", test_image);

...





test_image从路径加载图像即(C:\ foldername)。



现在我的问题是当我删除一个特定的记录时...文件夹中相应的图像应该被删除。



PS:我使用标准的SQL删除用于删除记录的代码。



That test_image loads the Image from a path i.e. (C:\foldername).

Now my problem is that when i delete a specific record...the corresponding Image in the folder should get deleted.

P.S.: i am using the standard SQL delete code for deleting a record.

推荐答案


try {
        File.Delete(@"C:\foldername\" + imagefilenamegoeshere);
    }
catch  (IOException e)
    {
    }


这篇关于从数据库中删除包含该图像的记录后,从文件夹中删除图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 19:17