Hello,
can anyone say how to insert the pdf file into sqlserver 2005 and read the pdf file from sqlserver...
Thanks in advace
|
1
|
Hello, can anyone say how to insert the pdf file into sqlserver 2005 and read the pdf file from sqlserver... Thanks in advace |
|||
|
|
|
|
If you are interested into using database for file storage, look at this 4guysfromrolla article. It's web oriented, but there should be no problem finding what you need. |
||
|
|
|
|
Essentially, you are just talking about BLOB storage and retrieval (of |
||
|
|
|
|
To put it into the database you must read it into a byte array. Either read it from the file system or use the AspNetFileUploadWebControl.FileBytes property. Create an insert stored procedure and add the byte array as the parameter for your DB column (the column must be of SQL data type "image"). To get it out of the database, use something like:
To allow the user to view or download it use my method SendAsFileToBrowser():
The source code for the method (with overloads):
|
|||
|
|