Basically I am creating an application in C#.NET with an access database (don't want the client to have to have sql server installed on their machine).
I am wondering whether it would be best to store images in a database or just store them in a folder with the filename just the ID of the record (which is fine either way).
The images will probably all be less than 100KB and most are likely to be less than 50KB. It is likely that there could be up to tens of thousands of records.
I am just wondering, from a performance point of view (reading the images & fields and displaying them on screen), which would be the better solution? (images in database or filesystem?).
I will be using the datareader object/class to read the data from the database.
Thanks.
I am wondering whether it would be best to store images in a database or just store them in a folder with the filename just the ID of the record (which is fine either way).
The images will probably all be less than 100KB and most are likely to be less than 50KB. It is likely that there could be up to tens of thousands of records.
I am just wondering, from a performance point of view (reading the images & fields and displaying them on screen), which would be the better solution? (images in database or filesystem?).
I will be using the datareader object/class to read the data from the database.
Thanks.
Last edited: