문제

How to write a function (.net oracle client) which execute an oracle function and returns a varchar2 and aref cursor. My oracle function is like

  Function function_name(arg1 in number, arg2 in varchar2, out_cursor out cursorType) 
  return varchar2
도움이 되었습니까?

해결책

Return one value as a function return value and another value as an out parameter with Direction = System.Data.ParameterDirection.Output

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top