Theodore Patrick writes:
 > Is it possible to look up other SQL record values while iterating through a
 > <DTML-IN>?
I did not understand your requirements.

But the answer is yes:

        <dtml-let query_results=SQLMethod>
          <dtml-in query_results>
            ....
            <dtml-var "query_results[i].field">
              <!-- this will access "field" of the i-th row-->
            ...
          </dtml-in>
        </dtml-let>


Dieter

_______________________________________________
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )

Reply via email to