[Zope] sql

Dieter Maurer dieter@handshake.de
Mon, 19 Feb 2001 21:28:28 +0100 (CET)


Spinwing writes:
 > ... parameter passing to Z SQL methods:
 >  in REQUEST or explicitly?
 > ...
You will choose what better fits your needs:

 * sometimes, most arguments are already packaged in "REQUEST".
   Then you would add the few missing ones to REQUEST

 * if you have lots of paramters, they may be easier put and
   carried around in REQUEST

 * if the method has few parameters, I usually use explicit
   parameter passing as it is clearer


Dieter