September 3, 2007 at 5:52 am
I am new to SQL Server. Will anyone guide me for inserting a image in a table. Plz reply as soon as possible. Thanks in advance...
September 3, 2007 at 6:15 am
See the topic Adding ntext, text, or image Data to Inserted Rows in Books Online. Please post again if there's anything specific you don't understand.
John
September 3, 2007 at 6:33 am
Will u explain with example . I can't get any idea from books online. am new to this concept.
thanks john in advance...
September 3, 2007 at 8:02 am
In SQL Server 2005 you can use OPENROWSET(Bulk as:
INSERT INTO mytable ( somecolumn1 , imagefromfile ) SELECT 1 , BulkColumn FROM OPENROWSET(BULK 'C:\mypicture.jpg', Single_Blob) AS img
About openrowset you can read: ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/f47eda43-33aa-454d-840a-bb15a031ca17.htm
Regards,
Andras
September 4, 2007 at 12:55 am
Hi Sangeetha,
Please give us a clear picture about your problem. so that, we can provide an apt solution for your problem. Am assuming that you are trying to insert an image from the front end and it should be stored in the back end.
Create a table with column as "Image" type,
For ex: Create table ImageTable(Imagecolumn Image)
In the front end,
1) Get a File upload control, and read the image using an input stream.
int imagelen = Upload.PostedFile.ContentLength;
byte[] picbyte = new byte[imagelen];
Upload.PostedFile.InputStream.Read(picbyte, 0, imagelen);
2) Connect to the database and execute your sql command to bind the parameters and execute your command using ExecuteNonQuery.
3) Close your connection.
Closing my article assuming that I have satisfied your request. If you need the exact code do mail me to venkatesanj@hcl.in. Please give your feedback too.
Regards,
Venkatesan Prabu,
HCL Technologies
Thanks and Regards,
Venkatesan Prabu, 😛
My Blog:
http://venkattechnicalblog.blogspot.com/
September 5, 2007 at 10:39 am
I am trying to use the method Andras explained to create a stored procedure. The code works perfectly when I run it as a query but when I try to create the procedure I'm getting a syntax error at the variable name used for the datafile parameter. Any suggestions??
Michelle
September 6, 2007 at 1:49 am
Hi Michelle,
OPENROWSET accepts only string literals as the filepath, so you would need to construct this query dynamically, something like:
CREATE PROC insertBulk ( @filename NVARCHAR(260) ) AS BEGIN DECLARE @query NVARCHAR(500) SET @query = N'INSERT INTO mytable ( somecolumn1 , imagefromfile ) SELECT 1 , BulkColumn FROM OPENROWSET(BULK ''' + @filename + ''', Single_Blob) AS img' EXEC ( @query ) END
Regards,
Andras
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply