Re: EOQualifier wildcard problem

2008-11-13 Thread Lachlan Deck
On 14/11/2008, at 4:40 AM, Guido Neitzer wrote: On 10.11.2008, at 19:18, Lachlan Deck wrote: Yes. I've attached a (slightly modified) version of Mike's templates as linked to from the wiki. I can only recommend against using modified templates until you REALLY know what you're doing. I

Re: EOQualifier wildcard problem

2008-11-13 Thread Guido Neitzer
On 10.11.2008, at 19:18, Lachlan Deck wrote: Yes. I've attached a (slightly modified) version of Mike's templates as linked to from the wiki. I can only recommend against using modified templates until you REALLY know what you're doing. It's a pain in the ass to change them whenever somet

Re: EOQualifier wildcard problem

2008-11-10 Thread Richard Stephens
What template are you using? Whatever the defaults included with the framework are. Thanks for those, I will definitely take a look at them. On 11/11/2008, at 12:18 PM, Lachlan Deck wrote: On 11/11/2008, at 10:25 AM, Richard Stephens wrote: As you're using Wonder: YourEntity.CITY.caseInse

Re: EOQualifier wildcard problem

2008-11-10 Thread Lachlan Deck
On 11/11/2008, at 10:25 AM, Richard Stephens wrote: As you're using Wonder: YourEntity.CITY.caseInsensitive(string + "*"); Slightly off topic, but do i have to change my EOGenerator templates to get this syntax? Yes. I've attached a (slightly modified) version of Mike's templates as link

Re: EOQualifier wildcard problem

2008-11-10 Thread Richard Stephens
As you're using Wonder: YourEntity.CITY.caseInsensitive(string + "*"); Slightly off topic, but do i have to change my EOGenerator templates to get this syntax? I don't seem to have it on any of my entities. Regards, Richard Stephens Ph: 07 3136 3426 Mob: 0410 111 570 Email: [EMAIL PROTECTE

Re: EOQualifier wildcard problem

2008-11-10 Thread Awbrey Tyler Hughlett
On Nov 10, 2008, at 5:20 PM, Ramsey Gurley wrote: Are you sure this is what isn't working for you? Perhaps a typo? String cityWildcard = "lub"; NSArray args = new NSArray(cityWildcard + "*"); EOQualifier qual1 = EOQualifier.qualifierWithQualifierFormat("city

Re: EOQualifier wildcard problem

2008-11-10 Thread Ramsey Gurley
Are you sure this is what isn't working for you? Perhaps a typo? String cityWildcard = "lub"; NSArray args = new NSArray(cityWildcard + "*"); EOQualifier qual1 = EOQualifier.qualifierWithQualifierFormat("city caseInsensitiveLike 'lub*'", null); EOQualifier q

Re: EOQualifier wildcard problem

2008-11-10 Thread Lachlan Deck
On 11/11/2008, at 9:16 AM, Awbrey Hughlett wrote: On Nov 10, 2008, at 3:58 PM, Chuck Hill wrote: On Nov 10, 2008, at 1:31 PM, Awbrey Hughlett wrote: Why does this work for matching the word "Lubbock": EOQualifier.qualifierWithFormat("city caseInsensitiveLike 'lub*'", null); and

Re: EOQualifier wildcard problem

2008-11-10 Thread Awbrey Hughlett
On Nov 10, 2008, at 3:58 PM, Chuck Hill wrote: On Nov 10, 2008, at 1:31 PM, Awbrey Hughlett wrote: Why does this work for matching the word "Lubbock": EOQualifier.qualifierWithFormat("city caseInsensitiveLike 'lub*'", null); and not this: String cityWildcard =

Re: EOQualifier wildcard problem

2008-11-10 Thread Chuck Hill
On Nov 10, 2008, at 1:31 PM, Awbrey Hughlett wrote: Why does this work for matching the word "Lubbock": EOQualifier.qualifierWithFormat("city caseInsensitiveLike 'lub*'", null); and not this: String cityWildcard = "lub"; NSArray args = new NSArray(cityWild

EOQualifier wildcard problem

2008-11-10 Thread Awbrey Hughlett
Why does this work for matching the word "Lubbock": EOQualifier.qualifierWithFormat("city caseInsensitiveLike 'lub*'", null); and not this: String cityWildcard = "lub"; NSArray args = new NSArray(cityWildcard + "*"); EOQualifier.qualifierWithFormat("c