3 Sep
2004
3 Sep
'04
12:10 a.m.
I have a query returning data from the zsql method. How can I append to the results object that I receive. Lets say I select a,b,c from mytable I get a results object . from my use/reading of this it is a list of dictionaries ... I thought that I could do this to append a new row myrow = dict([('a','1'),('b','2'),('c','3')]) aData=aData,myrow But alas I get an error: AttributeError: 'tuple' object has no attribute 'dictionaries' Could anyone shed some light on this please, not so much the error as I understand that ... But how I can do append a row to this data structure. ____________________________________________ Peter Millar