Tagged Questions
2
votes
1answer
290 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:
...
2
votes
2answers
301 views
Why can't I execute the stored procedure? (OracleException was caught)
This is code to connect to an Oracle database. It fails at the last line: dbDataAdapter.Fill(dtResult);
private object Execute(CommandType commandType, Common.DATA.SqlCommonExecutionType ...
1
vote
3answers
556 views
ORA-06550, PLS-00306; Error inserting data to Oracle procedure
I have tried to troubleshoot this problem but to no avail. I get error while inserting a big chuck of data to Oracle package containing procedure 'INSCRAPP'. The error message is,
ORA-06550: line ...
1
vote
4answers
905 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
175 views
Any help with Oracle exception with ADO.Net !
When I'm trying to execute the following sql block, I got the following Exception
ORA-06550: line 1, column 6:
PLS-00103: Encountered the symbol "" when expecting one of the following:
begin case ...
0
votes
1answer
319 views
Telling me my stored procedure isn't declared
Here is where the error is occuring in the stack:
public static IKSList<DataParameter> Search(int categoryID, int departmentID, string title)
{
Database db = new ...
0
votes
1answer
184 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
1answer
982 views
Calling an oracle function from C#
I have an Oracle function GetEmployeeDetails which saves all the employee details into a temporary table TempEmployeeDetails table.
I have to call the function followed by a select query on the ...