I need to make sql-searches using something like: soundex
or metaphone
for android
over phonegap
.
But neither soundex
nor metaphone
works.
Example:
SELECT * FROM customers WHERE soundex(surname) = soundex('Mayer');
This brings me the message, that soundex
isn't known.
Does anybody know how I can use soundex
or something like soundex
with phonegap
(android
)?