Re: [sqlite] rtree extension - Windows Binary?

2008-06-13 Thread Alexey Pechnikov
В сообщении от Friday 13 June 2008 20:38:42 Andrew Brampton написал(а): > Hi Donald, > > I have a index on both lat and long, but please correct me if I'm wrong, > but I think SQLite will only use a single index per SELECT. So only one of > the index is in use. I think the EXPLAIN command confirms

Re: [sqlite] rtree extension - Windows Binary?

2008-06-13 Thread Andrew Brampton
Hi Noël, Sorry I wasn't clear... I don't have a windows compiler, hence being unable to compile it :) Andrew - Original Message - From: "noel frankinet" <[EMAIL PROTECTED]> > However at the moment I'm unable to compile it, so I was wondering if > anyone had a DLL for windows which I

Re: [sqlite] rtree extension - Windows Binary?

2008-06-13 Thread Andrew Brampton
125467816 AND latitude < 64.6631165643883 ORDER BY zoom LIMIT 50; - Original Message - From: "Griggs, Donald" <[EMAIL PROTECTED]> Sent: Friday, June 13, 2008 5:15 PM Subject: Re: [sqlite] rtree extension - Windows Binary? > Hi Andrew, > > Maybe this go

Re: [sqlite] rtree extension - Windows Binary?

2008-06-13 Thread noel frankinet
Griggs, Donald a écrit : > Hi Andrew, > > Maybe this goes without saying, but I guess you've already worked on the > "usual suspects" such as: > > -- An index for Lat and another for Lon. > -- Larger cache > -- EXPLAIN QUERY PLAN prefix to ensure that index used > -- One-time VACUUM has any

Re: [sqlite] rtree extension - Windows Binary?

2008-06-13 Thread Griggs, Donald
Hi Andrew, Maybe this goes without saying, but I guess you've already worked on the "usual suspects" such as: -- An index for Lat and another for Lon. -- Larger cache -- EXPLAIN QUERY PLAN prefix to ensure that index used -- One-time VACUUM has any effect? -- ANALYZE -Original