28 Sep
2003
28 Sep
'03
8:31 p.m.
Roger Mallett wrote at 2003-9-28 05:33 +0000:
I am attempting to access an element from a list and pass the element to a SQL method.
If "l" is a list, you access its "i"th element with "l[i]". To pass an argument to a Z SQL Method, you pass it as keyword argument: "YourZSQLMethod(argument1=val1, argument2=val2,...)". Dieter