I am using VB.Net and developed a desktop based application.
I am using SQL SERVER as backend for Data Storage.
I want to store Images. Using filesystem is the best way to store Images.
But how can I fetch/Store Image if I am using SQL server in LAN.
Say I created User in my application.
User A has Image 1
User B has Image 2
If user B stores IMAGE in PC1 and Login from PC 2 how can I fetch Image in PC2 from PC1?
Options I searched :
- Using file System(Share folder of the Image and store Address in Database).
- Storing Image Data in SQL DATABASE.(Not So convenient way as I read on Internet)
I am using SQL Server in LAN via TCP connection. Is 2nd Option Good doing such thing?
I read the link Storing images in SQL Server? Found many useful article like storing image with size less then 255kb in SQL SERVER is good. But I had no restriction on Image Size.
What shall I do and any other recommendation on how to store/fetch Image data?