>From the SQLite3 docs:
The LIKE operator does a pattern matching comparison. The operand to
the right contains the pattern, the left hand operand contains the
string to match against the pattern. A percent symbol % in the pattern
matches any sequence of zero or more characters in the string. An
underscore _ in the pattern matches any single character in the
string. Any other character matches itself or it's lower/upper case
equivalent (i.e. case-insensitive matching).

That said, is the id a text column?  I ask because identifiers are so
often numerical, which would probably fail a LIKE comparison.


Anm



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to