Page 1 of 1

Is there something like aData += oRs:GetRows() ??

Posted: Wed Mar 11, 2020 2:51 pm
by gdeteran
I need to put the result of 2 recordset in an array.

Thanks and regards

Re: Is there something like aData += oRs:GetRows() ??

Posted: Wed Mar 11, 2020 3:19 pm
by nageswaragunupudi

Code: Select all

aResult := AMERGE( RsGetRows( oRs1 ), RsGetRows( oRs2 ) )
 

Re: Is there something like aData += oRs:GetRows() ??

Posted: Wed Mar 11, 2020 3:50 pm
by gdeteran
nageswaragunupudi wrote:

Code: Select all

aResult := AMERGE( RsGetRows( oRs1 ), RsGetRows( oRs2 ) )
 
Rao, many thanks