[sqlite] Re: Performance problem for a simple select with range

2007-10-31 Thread Igor Tandetnik
Doug <[EMAIL PROTECTED]> wrote: I'm not an SQL guru by any means, so seeing this made a light go on. Does that mean it is a good idea in the general case to always add "limit 1" to a select that you know should only return 1 row? That probably can't hurt (if you are sure the query would only ev

[sqlite] Re: Performance problem for a simple select with range

2007-10-31 Thread Igor Tandetnik
Dani Va <[EMAIL PROTECTED]> wrote: First, thanks, your suggestion worked. To my surprise, it was enough to add "limit 1" to the original query. Try searching for a value that doesn't fall into any block - you'll likely find that the query takes a noticeable time to produce zero records. Pick

[sqlite] Re: Performance problem for a simple select with range

2007-10-29 Thread Igor Tandetnik
Dani Valevski <[EMAIL PROTECTED]> wrote: I think I have a performance problem for a simple select with range. My Tables: CREATE TABLE locations( locidINTEGER PRIMARY KEY, country TEXT, regionTEXT, cityTEXT, po