"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes:
> How do I merge multiple returned sql select queries uniquely into one
> final object?
Can you elaborate? If I understood you, this isn't possible with SQLObject.
query1 = model.Class1.select()
query2 = model.Class2.select()
--> you can't "merge" those.
query1 = model.Class1.select()
filtered_results = query1.filter(condition)
--> filtered results will also be a result set but filtered according to
condition.
--
Jorge Godoy <[EMAIL PROTECTED]>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---