[ZPT] Parameter from Python Script to SqlMethod WORKS!

Damir Bartakovic damir@stud.fbi.fh-darmstadt.de
Fri, 1 Feb 2002 13:40:42 +0100 (CET)


Sorry guys for bothering you since it was not really ZPT-related.
And thanks Hans and Even for the quick answer.
This worked.

context.PkSelectMethod(formalname=personsid)

On Fri, 1 Feb 2002, hans wrote:

> Damir Bartakovic wrote:
>
> > Hi again,
> >
> > I have this:
> >
> > for emp in context.PkSelectMethod(personsid):
> >     pers_forename = emp.pers_forename
>
> how abt
> for emp in context.PkSelectMethod(formalname=personsid)
> explicitly passing the parameter via keyword argument?
>