Not without modifying the RowSet library directly. You could add a method to the library like this:

Brilliant thanks. Have added it and all is now well...

On 17 Oct 2005, at 16:40, Aparajita Fishman wrote:

If you can wait till the end of the week, I will have support for persistent RowSets.


In the mean time is there a quite and dirty way of doing this so I can at least test my code..


Not without modifying the RowSet library directly. You could add a method to the library like this:

method "makePersistentCopy"($self)

    $copy := copy collection($self; *)
    $copy{"_columnMap"} := copy collection($self{"_columnMap"}; *)
    $copy{"_rowData"} := copy collection($self{"_rowData"}; *)
    return ($copy)

end method

Regards,

   Aparajita
   www.aparajitaworld.com

   "If you dare to fail, you are bound to succeed."
   - Sri Chinmoy   |   www.srichinmoylibrary.com


_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/


_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to