[sqlalchemy] Please advice with new oracle 'OFFSET x ROWS FETCH NEXT x ROWS' approach in 12c

2015-09-29 Thread Ralph Heinkel
Hi everybody, oracle 12c has received the long awaited possibility to properly provide LIMIT and OFFSET parameters to a select query. See https://oracle-base.com/articles/12c/row-limiting-clause-for-top-n-queries-12cr1 for details. In short this looks like: SELECT val FROM some_table

[sqlalchemy] Handle multiple relations between two rows/objects

2015-09-29 Thread c.buhtz
This is related to this post I found this problem in my application using Python3 with a SQLAlchemy connected sqlite-database. Simple description: Entity `a` (from table/class `A`) can

Re: [sqlalchemy] Please advice with new oracle 'OFFSET x ROWS FETCH NEXT x ROWS' approach in 12c

2015-09-29 Thread Mike Bayer
On 9/29/15 9:50 AM, Ralph Heinkel wrote: Hi everybody, oracle 12c has received the long awaited possibility to properly provide LIMIT and OFFSET parameters to a select query. See https://oracle-base.com/articles/12c/row-limiting-clause-for-top-n-queries-12cr1 for details. wow! In