[Zope-DB] ZSQL Result Set: How to find out column's names?

Stephan Herschel stephan.herschel@proceryon.at
Tue, 04 Feb 2003 14:09:54 +0100


This works just fine, thanks a lot!

Dieter Maurer wrote:
> Stephan Herschel wrote at 2003-2-3 17:27 +0100:
>  > <dtml-let result="query()">
>  > 
>  > <dtml-var expr="result[0].name()">
> It is called "names" and it is a method of the complete result
> set and not the individual result rows.
> 
> Try:
> 	<dtml-var expr="result.names()">
> 
> 
> Dieter
> 


-- 


Stephan