Re: [sqlalchemy] Query a query in SQLAlchemy

2018-02-09 Thread Jonathan Vanasco
ColdFusion's "queryable results cache" is pretty unique. I don't know of any database layers or ORMs that support that functionality out-of-the-box. They basically replace the upstream database with the results as a "materialized view", and act as the database server for that view. There is

Re: [sqlalchemy] Query a query in SQLAlchemy

2018-02-09 Thread Charles Heizer
gmail.com > > wrote: > > Hello, does anyone know if it's possible to query a query result in > > SQLAlchemy? > > > > Thanks! > > > > I'm not quite sure what you mean. If you've got a Query object with > some filter conditions already defined, you c

Re: [sqlalchemy] Query a query in SQLAlchemy

2018-02-09 Thread Simon King
On Fri, Feb 9, 2018 at 6:06 AM, Charles Heizer <ceh...@gmail.com> wrote: > Hello, does anyone know if it's possible to query a query result in > SQLAlchemy? > > Thanks! > I'm not quite sure what you mean. If you've got a Query object with some filter conditions already

[sqlalchemy] Query a query in SQLAlchemy

2018-02-08 Thread Charles Heizer
Hello, does anyone know if it's possible to query a query result in SQLAlchemy? 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