SV: SV: [Zope] Render SQL method as lines

Kenneth Ellested ke@younameit.dk
Tue, 20 Mar 2001 19:33:49 +0100


This was excactly what I needed !

	list = []
	for row in context.sqlMethod(context.REQUEST):
	    list.append(row.field)
	return list

Thanks !