How can I save image in SQL SERVER 2000 by using vb.net?

James

New member
I need to save image in a table of SQL server 2000 by using vb.net project. Even I need to see it like another records. Please help me. I hope you will provide me source code example so that I can understand it properly. Thanks.
 
I would suggest not storing it directly in a table...images and other large binaries tend to negatively impact performance. Instead, store them in another folder (preferably one in the same path as the database), then just store the (relative) path in the database...much quicker to retrieve or update that way.
 
Back
Top