Tagged Questions

2
votes
1answer
456 views

ORA-06550 wrong number or types of arguments when calling Oracle stored procedure

Have been fighting this for two days and am very frustrated but feel like I am making progress. After reviewing Oracle's online docs I am here. Receiving the following error upon code execution: ...
1
vote
4answers
935 views

Running Oracle stored procs from C#

A beginner question: I have a stored proc (just a procedure, without any packages) in the Oracle Database: CREATE OR REPLACE procedure FII_DBO.CLEAR_UNIT_TEST_PRODUCT IS BEGIN ... END ...
0
votes
1answer
1k views

Calling an Oracle stored procedure in C# using “Oracle.DataAccess” (with a parameter)

So I'm trying to call an Oracle stored procedure from my C# .NET application. Most online references I can find suggest "using System.Data.OracleClient;", but .Net 3.5 doesn't recognize that namespace ...
0
votes
1answer
190 views

Strange behaviour with a pl/sql query and .net

I run this query to read the count of the Records with an output parameter using OracleCommand: var query = "declare MyCount number; begin SELECT COUNT(*) INTO :MyCount FROM T_ISSUE; end;"; this ...
0
votes
2answers
1k views

multiple instances of named argument in list

I have a problem executing oracle procedures from Visual Studio 2008's Server Explorer, when i try to execute a procedure all the input parameters are doubled! it only happend to me in one ...