OracleParameter Question

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
pbright

OracleParameter Question

Post by pbright » Thu 14 Apr 2005 16:49

I've created the following:

maxtransaction = command.Parameters.Add("pi_maxtransaction", OracleDbType.Number );

maxtransaction.Direction = ????

How do I set the Direction in the collection?

Thanks!!

Paul
Posts: 725
Joined: Thu 28 Oct 2004 14:06

Post by Paul » Thu 21 Apr 2005 08:38

maxtransaction.Direction = ParameterDirection.Output;

Post Reply