Re: [sqlite] Fuzzy Matching

2008-07-07 Thread Alberto Simões
> Woody >> >> --- On Sat, 7/5/08, Stephen Woodbridge <[EMAIL PROTECTED]> >> wrote: >> >> From: Stephen Woodbridge <[EMAIL PROTECTED]> Subject: Re: >> [sqlite] Fuzzy Matching To: "General Discussion of SQLite Database" >> <sqlite

Re: [sqlite] Fuzzy Matching

2008-07-06 Thread Stephen Woodbridge
y awesome in reducing > over/under matches. > > Woody > > --- On Sat, 7/5/08, Stephen Woodbridge <[EMAIL PROTECTED]> > wrote: > > From: Stephen Woodbridge <[EMAIL PROTECTED]> Subject: Re: > [sqlite] Fuzzy Matching To: "General Discussion of SQLite Databas

Re: [sqlite] Fuzzy Matching

2008-07-05 Thread Harold Wood
wrote: From: Stephen Woodbridge <[EMAIL PROTECTED]> Subject: Re: [sqlite] Fuzzy Matching To: "General Discussion of SQLite Database" <sqlite-users@sqlite.org> Date: Saturday, July 5, 2008, 11:24 PM Stephen Woodbridge wrote: > I would be interested in having something li

Re: [sqlite] Fuzzy Matching

2008-07-05 Thread Stephen Woodbridge
d fuzzy text search. Are there >> any plans to implement something like this, if yes, I would like to >> take part in such a development. . Best Martin >> >> >> >> >> - Ursprüngliche Mail Von: Alberto Simões >> <[EMAIL PROTECTED]&

Re: [sqlite] Fuzzy Matching

2008-07-05 Thread Stephen Woodbridge
ROTECTED]> An: General Discussion of SQLite Database > <sqlite-users@sqlite.org> Gesendet: Donnerstag, den 3. Juli 2008, > 21:52:05 Uhr Betreff: [sqlite] Fuzzy Matching > > Hello > > Although I am quite certain that the answer is that SQLite does not > provide any

Re: [sqlite] Fuzzy Matching

2008-07-04 Thread D. Richard Hipp
On Jul 3, 2008, at 4:09 PM, John Stanton wrote: > I believe Sqlite implemens Soundex as standard. Thet might work for > you. If you compile with -DSQLITE_SOUNDEX=1 then there is an SQL function named soundex() built-in. That function takes a single argument and returns the soundex

Re: [sqlite] Fuzzy Matching

2008-07-03 Thread Martin Pfeifle
rstag, den 3. Juli 2008, 21:52:05 Uhr Betreff: [sqlite] Fuzzy Matching Hello Although I am quite certain that the answer is that SQLite does not provide any mechanism to help me on this, it doesn't hurt to ask. Who know if anybody have any suggestion. Basically, I am using SQLite for a dictionary

Re: [sqlite] Fuzzy Matching

2008-07-03 Thread John Stanton
I believe Sqlite implemens Soundex as standard. Thet might work for you. Alberto Simões wrote: > Hello > > Although I am quite certain that the answer is that SQLite does not > provide any mechanism to help me on this, it doesn't hurt to ask. Who > know if anybody have any suggestion. > >

[sqlite] Fuzzy Matching

2008-07-03 Thread Alberto Simões
Hello Although I am quite certain that the answer is that SQLite does not provide any mechanism to help me on this, it doesn't hurt to ask. Who know if anybody have any suggestion. Basically, I am using SQLite for a dictionary, and I want to let the user do fuzzy searches. OK, some simple