Re: [sqlite] Stemming Query

2013-02-12 Thread Mike King
Thanks for a quick answer. On Tuesday, 12 February 2013, Richard Hipp wrote: > On Tue, Feb 12, 2013 at 5:50 PM, Mike King > > > wrote: > > > Is there any way to turn stemming on/off for a FTS3 table? I create my > FTS3 > > table as follows: > > > > CREATE

Re: [sqlite] Stemming Query

2013-02-12 Thread Richard Hipp
On Tue, Feb 12, 2013 at 5:50 PM, Mike King wrote: > Is there any way to turn stemming on/off for a FTS3 table? I create my FTS3 > table as follows: > > CREATE VIRTUAL TABLE FreeText USING fts3(Content TEXT NOT NULL, > tokenize=porter) > > I'd like to be able to offer the

[sqlite] Stemming Query

2013-02-12 Thread Mike King
Is there any way to turn stemming on/off for a FTS3 table? I create my FTS3 table as follows: CREATE VIRTUAL TABLE FreeText USING fts3(Content TEXT NOT NULL, tokenize=porter) I'd like to be able to offer the option of whether to use stemming when searching (much like some other freetext