Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / New Users / September 2005

Tip: Looking for answers? Try searching our database.

BLOB Error

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
wdewebserver - 29 Sep 2005 18:59 GMT
Hi

Can someone explain why I get an error saving a document with pictures as a
BLOB? I can save Word, Text, RTF, CSV files that don't have any pictures
embedded without any problems.

Any clues or suggestions will be highly appreciated.
CT - 30 Sep 2005 06:05 GMT
How are you saving the documents and to where?

Signature

Carsten Thomsen
Enterprise Development with VS .NET, UML, AND MSF
http://www.apress.com/book/bookDisplay.html?bID=105
Communities - http://community.integratedsolutions.dk

> Hi
>
[quoted text clipped - 4 lines]
>
> Any clues or suggestions will be highly appreciated.
wdewebserver - 30 Sep 2005 09:51 GMT
I am saving the document to a Oracle database using the following code:

using(FileStream fileStream = new FileStream(docPath, FileMode.Open,
FileAccess.Read))

{

byte[] docData = new byte[fileStream.Length];

fileStream.Read(docData, 0, Convert.ToInt32(fileStream.Length));

CSDocumentsDataset.CS_DOCUMENTSRow docRow =
docDataset.CS_DOCUMENTS.NewCS_DOCUMENTSRow();

docRow.APPLICATION_ID = appId;

docRow.DOC_TYPE_ID = docTypeId;

docRow.DOCUMENT = docData;

docRow.CREATED = DateTime.Now.Date;

docRow.CREATED_BY = CS_EMPLOYEE_ID.ToString();

docDataset.CS_DOCUMENTS.AddCS_DOCUMENTSRow(docRow);

}

TIA

> How are you saving the documents and to where?
>
[quoted text clipped - 6 lines]
> >
> > Any clues or suggestions will be highly appreciated.

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.