In my previous Harbour and FWH version, in order to load contents of Recordset in ADO, I did:
- Code: Select all Expand view
- IF ! ( oRsClientes:Eof .and. oRsClientes:Bof )
oRsClientes:MoveFirst()
aArray1 := oRsClientes:GetRows()
ENDIF
But now, the format of the array is wrong. Is there another way to achieve the result?
Thank you.