Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Enterprise Library Datatypes
Message
From
27/09/2006 10:15:12
Jim Rieck
Quicken Loans/Rock Financial/Title Sourc
Livonia, Michigan, United States
 
 
To
All
General information
Forum:
ASP.NET
Category:
Databases
Title:
Enterprise Library Datatypes
Miscellaneous
Thread ID:
01157477
Message ID:
01157477
Views:
90
All,

I have a field in a table called attachment of VarBinary(Max) type. From a C# program that uses enterprise library, I am adding an in Parameter. The AddInParameter requires a data type parameter(dbType). What should I use to pass the attachment parameter? The length is usually more than 8,000. I've included my code below. Please help.
    DbCommand command = database.GetStoredProcCommand(spName);
    database.AddOutParameter(command, "@MessageDeliveryDocumentId", DbType.Int32, 0);
    database.AddInParameter(command, "@MessageDeliveryId", DbType.Int32, messageDeliveryId);
    database.AddInParameter(command, "@Attachment", DbType.Binary, attachment);
    database.AddInParameter(command, "@FileName", DbType.String, fileName);
    database.AddInParameter(command, "@FileType", DbType.String, fileType);
Thanks

Jim
Next
Reply
Map
View

Click here to load this message in the networking platform