RE: missing property, but no error

From: Cris Daniluk (cris.danilu..laraview.com)
Date: Fri Apr 29 2005 - 16:15:04 EDT

  • Next message: Mike Kienenberger: "Re: missing property, but no error"

    >
    > 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