I want to know the practical difference between strong and weak ref cursor
.
Strong ref_cursor
will always use to return a value and compiler know the structure during the compile time, but in the weak ref cursor
it will not return a value and compiler dosen't know the structure during the compile time.
This is the basic difference but my question is what value will be returned by the strong ref cursor
and where that returned value will be used.