vote up 0 vote down star

Is there a way to use positional parameters when calling Oracle stored procedure using System.Data.OracleClient?

IDataParameter parameter = dbCommand.CreateParameter( );
parameter.Value = "Blah Blah";
parameter.Type = OracleType.Varchar;
dbCommand.Parameters.Add(parameter);

The code above creates a parameter and assigns "Parameter1" name to it. When stored proc is called Oracle gives "wrong number or types of arguments" error.

flag
What is the signature of the stored procedure ? What technicality prevents you from naming your parameter ? – Mac Jan 14 at 9:09
We have a lot of legacy code relying on parameters been positional, not named – Dmitriy Shvadskiy Apr 8 at 21:49

1 Answer

vote up 0 vote down

Solved problem by switching to provider from Oracle (Oracle.DataAccess)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.