Re: [sqlalchemy] Pickle of result from query with explicit sqlalchemy.orm.Load() option

2019-08-26 Thread Jan Wegger
Awesome, thanks! -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example code, please provide an MCVE: Minimal, Complete, and Verifiable Example. See http://stackoverflow.com/help/mcve for a full description. --- You received this mess

Re: [sqlalchemy] Pickle of result from query with explicit sqlalchemy.orm.Load() option

2019-08-26 Thread Jan Wegger
Ok, thanks for the reply. My original case was a situation where it seemed hard to get it right without using Load() directly, but I think I've been able to work around it now, and it didn't turn out too bad, so it's no big deal for me then. Thanks again for a great library! -- SQLAlchemy - T

[sqlalchemy] Pickle of result from query with explicit sqlalchemy.orm.Load() option

2019-08-26 Thread Jan Wegger
imal but complete set of steps to reproduce below. The original setup uses a MySQL engine, but below I use 'sqlite:///:memory:' to keep it simple. The error output is not exactly the same, but I'm guessing that's not essential since the overall problem is the same. Thanks