I am invoking a stored proc from .NET app. The proc returns an out parameter of type Varchar2. To fet ch the out parameter I am passing the parameter to the command as OracleParameter:
parm12 = new OracleParameter("testkey"
, OracleDbType.Varchar2
, out2
, ParameterDirection.Output);
When I execute the proc I am receiving an error
PL/SQL: numeric or value error: character string buffer too small.
Any help highly appreciated!!!