K
Klaus Klöser
Hi,
I am using the Oracle Data Provider ODP.NET which extends the ADO.NET.
What is the best way to create a function within the Oracle Database ?
e.g.
"function test (f_text in varchar2)
return varchar2
is
begin
return f_text||' processed !';
end;"
If I send that string over oracle.dataaccess.oracleCommand I get an error.
simple select statements work fine.
what is the best way to get a funtion (procedure/package) compiled ?
thx
Klaus
I am using the Oracle Data Provider ODP.NET which extends the ADO.NET.
What is the best way to create a function within the Oracle Database ?
e.g.
"function test (f_text in varchar2)
return varchar2
is
begin
return f_text||' processed !';
end;"
If I send that string over oracle.dataaccess.oracleCommand I get an error.
simple select statements work fine.
what is the best way to get a funtion (procedure/package) compiled ?
thx
Klaus