Iam executing the following C# code and it is giving an error at da.Fill(ds); in the code.Please some one help.
Thanks in advance
OracleConnectio n conn = new OracleConnectio n(GetConnection String());
OracleCommand cmd = new OracleCommand(" exec GET_DATA", conn);
cmd.Parameters. Add("NO", OracleType.Char , 7).Value = "111" cmd.Parameters. Add("DAT_CURSOR ",...
Search Result
Collapse
2 results in 0.0039 seconds.
Keywords
Members
Tags
-
ORA-01036: illegal variable name/number.
-
ORA-01036: illegal variable name/number
I'm trying to call a package/procedure in oracle (from an ASP page) which
requires a number of parameters. I have got this working using OO40 but
unfortunately the transaction rollback function doesnt seem to do much.
So I'm now trying to use ADO instead (in the hope that ADO transactions will
work), however I'm getting the above error. My initial searches havent
turned up any suitable suggestions - there appear...