Click here to Skip to main content
15,896,063 members

Comments by Member 8657300 (Top 4 by date)

Member 8657300 30-Mar-13 8:18am View    
yes
i have a collection of images in a folder and then i insert them into the database. i cannot delete the image after inserting it. i need the image in the folder after insertion. what i want to know can i simultaneously delete the image from the folder when i delete its record from the database.
Member 8657300 30-Mar-13 8:17am View    
yes what you have mentioned is correct.
i have a collection of images in a folder and then i insert them into the database.
i cannot delete the image after inserting it. i need the image in the folder after insertion.
what i want to know can i delete the image from the folder when i delete its record from the database.
Member 8657300 10-Mar-13 11:26am View    
hi maciej
thanks for link , but as i mentioned above my code is for matching fingerprints...for which i have the above code...i just wanted to access the database , match each image with the query image that i will provide...and after finding the perfect match it should return other records....the code i have mentioned above matches perfectly but the problem is it matches fingerprints stored in a folder...i want it to match fingerprints stored in a database...
/////////////////////////////////////////////////////////////////////////////////////
string path = @"D:\db";
string dir = Path.GetFileNameWithoutExtension(path);
string[] filess = Directory.GetFiles(path, "*.tif*" , System.IO.SearchOption.AllDirectories);
MessageBox.Show(dir);
///////////////////////////////////////////////////////////////////////////////////
this is the code i am using for scanning the folder...you can also see the path i have mentioned(folder's)
Member 8657300 4-Jan-13 0:45am View    
Hi christian
When i purchased that scanner ... i received a SFGDemo.exe application along with it... I think that application has been developed using C#.Net. While using that application i can match,save,search fingerprints. But as i have to make changes according to my requirements I am unable to access that applications source code (i wasted a week trying to debug it). So my point here is ...if that application can display the fingerprint scanned then there might be some solution to my problem.