Hi Everyone,
I want to update picture form C# to oracle Database but without location or path direct i want to update in database is it posible.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dileep KumarPosted May 1, 2018, 7:40 AM
Rajesh GamiPosted Apr 25, 2018, 5:20 AM
I prefer not to store the images in relational databases, because the imagedata (bytestreams) which you supposed to store are heavy.
You can create a repository on your server and store the images over there (dont forget to set appropriate permission for the user to access). While you create a product instead of storing the image save the location details.
Once you load the product details take the location from the database. :- Create a ASP.NET handler to load the images on the client browser. In Handler request the images from the repository and create BITMAP from the image data.
Yogesh GhorpadePosted Apr 25, 2018, 4:54 AM