[sqlalchemy] Sybase ASE 15.7 Sqlalchemy Limit/Offset Issue

2014-03-28 Thread angad nath
Hi All, I am trying to port my application from MySQL to Sybase ASE 15.7 version. How can i implement my query using LIMIT and OFFSET using sqlalchemy 0.8 targeting Sybase ASE 15.7 ? Thanks, Angad Nath -- You received this message because you are subscribed to the Google Groups sqlalchemy

Re: [sqlalchemy] Sybase ASE 15.7 Sqlalchemy Limit/Offset Issue

2014-03-28 Thread Michael Bayer
The Sybase dialect supports rendering of the TOP and START AT clauses when you use the limit() and offset() constructs of select(). So if you're using Core SQL select() constructs or the ORM Query, it should work at least rudimentally. On Mar 26, 2014, at 4:19 AM, angad nath