I have written a simple Oracle function called Testing with no parameters that returns a string. When I try to call it from my .NET app, I get an error:
System.Data.OracleClient.OracleException:
ORA-06550: line 1, column 7:" "PLS-00221: 'TESTING2' is not a procedure or is undefined".
When I change it to do "Select testing() from dual" and change CommandType to Text, it works. What am I missing?
Dim oracleConn As OracleConnection = CreateConnection(<connection info here>)
Dim oracleCmd As New OracleCommand()
oracleCmd.Connection = oracleConn
'oracleCmd.CommandText = "SELECT TESTING2() FROM DUAL" 'this works
oracleCmd.CommandText = "TESTING2" 'this does not work
oracleCmd.CommandType = CommandType.StoredProcedure
'oracleCmd.ExecuteReader() 'also tried this
Dim tmpVar As String = oracleCmd.ExecuteScalar()
create or replace FUNCTION testing2
RETURN VARCHAR2
AS
begin
return 'hello';
end;