Oh k, the joins worked. Thanks.
On Tuesday, June 5, 2012 1:22:11 PM UTC-4, Anthony wrote: > > I think you can do: > > myrows.records.append(myrow) > > Note, I don't think this is part of the documented API, so probably not > guaranteed to remain backward compatible (though I doubt it will change). > > You can also join two Rows objects: > > newrows = rows1 & rows2 > newrows = rows1 | rows2 # this one removes duplicates from rows2 before > combining > > Anthony > > On Tuesday, June 5, 2012 1:10:58 PM UTC-4, Umpei Kurokawa wrote: >> >> Is it possible to insert or append Row objects to Rows? > >

