Is there an easy way to bind the attributes of an object into the parameters of a zsql method? I am trying to do something like this in Python Script:
for user in context.Users.RegistrationInfo.objectValues("UserInfo"):
context.sql_users_insert(user)
The sql_users_insert takes a bunch of parameters and the “user” object above is a ZClass with properties that have exact names as parameters for zsql method.
Thanks for any help,
Chris Bruce