In my webpage image get from file upload control and it has to be store in sql server.how to write stored procedure for save image in sql server?
|
closed as not a real question by casperOne♦ Jun 21 '12 at 14:08
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Some sample code(not tested, could need some fixes):
In the .NET code:
|
|||||||
|
|
Just use the usual stored procedure, just use a different datatype, save it as byte array, so you will have to convert first your image to byte array before passing it as parameter to your stored procedure, save the length and file type as well. Here is a sample stored procedure. I'll leave the rest to you. If you know how to execute queries in your web app, you can call this procedure. just google for it.
i guess the image file type will be obsolete so you should use a different file type for saving your bytes |
|||||||||
|