On 10/30/06, percious <[EMAIL PROTECTED]> wrote: > With TurboEntity work with tg-admin sql create
I'm not 100% sure but I'd be surprised if it didn't. > Can the author provide better documentation on the use of "select" > queries? IE select(id>50 and id<100) Syntax is the same as standard sqlalchemy. The select is the same as used in ActiveMapper and assign_mapper: TableName.select(and_(TableName.c.id > 50, TableName.c.id < 100)) --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

