Skip to Main Content

ODP.NET

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

C# Table of Blob

838900Feb 11 2011 — edited Feb 14 2011
I want to pass a collection of blob as a parameter in the procedure.
Collection of simple types I pass this way:

OracleParameter variable = new OracleParameter();
variable.ParameterName = "IN_VARIABLE";
variable.OracleDbType = OracleDbType.Object;
variable.UdtTypeName = "TYPE_NT_TBL_N";
variable.Direction = ParameterDirection.Input;
variable.Value = new TableOfNumber { Value = variables.ToArray() };
cmd.Parameters.Add(variable);

How do I pass a collection of blob?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 14 2011
Added on Feb 11 2011
3 comments
1,029 views