0
votes
2answers
93 views
Oracle - Java - wrong number or types of arguments in call to ‘SP_GET_MENU_PARENTS’
Hi,
Below is my Oracle Procedure. When i call this procedure using java, it throws error like this.
CREATE OR REPLACE PROCEDURE sp_Get_Menu_Parents
(
v_inMenuID IN VARCHAR2 DEFAULT NULL,
cv_1 IN …
0
votes
1answer
57 views
Strange behaviour with a pl/sql query and .net
Hi
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;";
…
