On Sep 11, 2014, at 1:53 AM, pyArchInit ArcheoImagineers <[email protected]> 
wrote:

> Hi,
> if I create many "or" request with a little number of id (list populated with 
> 10 values), the script return to me this message: Expression tree is too 
> large (maximum depth 1000)
> 
> So, It's possibile there is a limit for sqlite? This is a big problem for 
> using sqlalchemy/sqlite.
> 
> I cannot linking many selection because I want to order the query, so I 
> suppose I must to do a single select query. It's correct?

I'm assuming pysqlite is raising that.   which would be the end of the line for 
that approach, you need to break it up into individual SELECT statements or 
write your data to a temp table and JOIN to that.


-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to