Re: [sqlalchemy] Re: orm add() or table insert() without implicit_returning

2016-08-10 Thread Mike Bayer
also, INSERT without ever needing a SELECT definitely implies you don't need an ORM. Use Core directly. On 08/10/2016 12:40 PM, mdob wrote: Me again. Just wanted to say that | engine =create_engine(connstr,implicit_returning=False,use_scope_identity=True,echo=True) | actually works as

[sqlalchemy] Re: orm add() or table insert() without implicit_returning

2016-08-10 Thread mdob
Me again. Just wanted to say that engine = create_engine(connstr, implicit_returning=False, use_scope_identity =True, echo=True) actually works as expected. I was able to add new objects without select permission on table :) On Wednesday, August 10, 2016 at 5:33:30 PM UTC+2, mdob wrote: >