"Jorgen Bodde" <[EMAIL PROTECTED]> wrote: > I will try this approach. The idea was that I could give a list to the > SQL execute command, so that the results coming back would > automatically be assigned to variables. > Don't forget that in Python a function can return multiple results (or rather can return a sequence). That means you can do something like:
varA, varB = doSomething() where doSomething would execute your SQL and return two results. -- http://mail.python.org/mailman/listinfo/python-list