Hello Joost, Wednesday, September 10, 2003, 6:02:01 AM, you wrote:
JK> <snip> >>>> print vw[0]['stem'] JK> 'tree' JK> so that instead of the string 'stem' i can pass a variable holding a string JK> to index the desired column. JK> this, however, gives an error. i've been trying other ways, and i've been JK> looking at the Mk4Py documentation, but i don't see anything that would JK> make this possible. is there a way to do this? or is there a different way JK> to achieve a "dynamic" database? JK> TIA how 'bout... getattr(vw[0],'stem') -- Best regards, Jerry _______________________________________________ metakit mailing list - [EMAIL PROTECTED] http://www.equi4.com/mailman/listinfo/metakit
