>
> when i used
> Expression exprQualifier = Expression.fromString("user = ' "
> + username +" ' " ); the above expression is case sensetive.
>
> how to get rid of the case sensetive using Expression.
>
>
Try:
Expression.fromString("user likeIgnoreCase '" + username +"' " );
likeIgnoreCase will still return an exact match if you don't use %
Cris
This archive was generated by hypermail 2.0.0 : Fri Apr 29 2005 - 16:15:06 EDT