On May 2, 2008, at 10:52 AM, Yannick Gingras wrote:
> When _offset is 0 or None, _limit seems to be ignored. There might be > something else but I see: > > print q[:0] # no limit statement in the SQL > print q[0:0] # no limit statement in the SQL > print q[1:1] # limit statement is there the first two have a LIMIT of zero. Did you try: print q[0:10] ? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" 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/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
