hi guys am building c# application generated via ASP.NET Maker And am trying to call oracle procedure so, I wrote the following:
var OraConn = ew_GetConn();
string sql = "CALL CPM.READING_DATA_TEST";
OraConn.ExecuteNonQuery(sql);
Where reading_data_test
is the name of my stored procedure, And CPM
the name of schema which contain the procedure
so i got this error
ora-06576: not a valid function or procedure name
And am very sure the name of procedure is correct 100 %