Re: [sqlite] using test_intarray

2010-07-14 Thread Simon Slavin
On 14 Jul 2010, at 8:22pm, Igor Sereda wrote: > I would agree in other cases, however, in our app, the schema is dynamic and > depends on the user data. Normally, we have about 200 tables with two or > three columns each, with indexes almost on each table. Queries with > lots-of-joins are also co

Re: [sqlite] using test_intarray

2010-07-14 Thread Igor Sereda
Simon, I would agree in other cases, however, in our app, the schema is dynamic and depends on the user data. Normally, we have about 200 tables with two or three columns each, with indexes almost on each table. Queries with lots-of-joins are also constructed dynamically, and we found SQLite to b

Re: [sqlite] using test_intarray

2010-07-14 Thread Simon Slavin
On 14 Jul 2010, at 4:17pm, Igor Sereda wrote: > For example, where we now have a query > > SELECT ...lots-of-joins... WHERE ...lots-of-exprs... AND someColumn IN > (?,?,?,? ...40 params... ) This -- the 'lots-of-joins' and the '40 params' in particular -- suggests you should be rethinking you