Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Oracle function not returning boolean
If not why able to create?
  create or replace function mostaaafa return
   boolean is
     Result boolean;
     n number(4):=0;
   begin
  if n = 0 then
     result:=true;
  else
   result:=false;
  end if;
     return result;
*  end ;
SQL> /

Function created.
// so if created how I can call form C#?
Posted
Updated 23-Sep-10 6:09am
v2
Comments
Sandeep Mewara 23-Sep-10 12:10pm    
Your question is not quite clear. Please edit/update it and re-phrase if needed.

1 solution

please check the following link which has the solution:

http://bytes.com/topic/c-sharp/answers/487067-how-call-oracle-function-c[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900