Passing reference is preferred because passing an array back is seen as
more of a 'hack'
TeejB wrote:
> Hi all,
>
> Quick question: If I have a function which populates a large array (ie.
> reading rowsets), is it better to pass in a reference to a variable to
> accept the data, or should I just create, populate and return the array
> from the function?
>
> Thanks in advance!