Re: [Virtuoso-users] Edit distance function error

2010-12-24 Thread Chris Wj
Ok, I did a complete rewrite inspired by the distance function from http://www.logarithmic.net/pfh-files/blog/01164790008/VP_tree.py It seems to work well... here's the virtuoso pl version: create procedure edit_distance(in str1 varchar, in str2 varchar){ > declare iter,tempint,len1,len2,a,d,

Re: [Virtuoso-users] Edit distance function error

2010-12-24 Thread Chris Wj
Another example here: http://stackoverflow.com/questions/560709/levenshtein-distance-in-t-sql On Fri, Dec 24, 2010 at 1:34 PM, Chris Wj wrote: > Hello, I've been trying to replicate the edit_distance function from > http://www.kodyaz.com/articles/fuzzy-string-matching-using-levenshtein-distance-

[Virtuoso-users] Edit distance function error

2010-12-24 Thread Chris Wj
Hello, I've been trying to replicate the edit_distance function from http://www.kodyaz.com/articles/fuzzy-string-matching-using-levenshtein-distance-sql-server.aspxamong some other posts. I keep getting the following error: > *** Error 22023: [Virtuoso Driver][Virtuoso Server]SR066: Unsupported c