Re: Single thread creation queue?

2021-11-23 Thread Samuel Pelletier via Webobjects-dev
If your usernames (or keyString) are case insensitive, store them in a normalized case (in lowercase for exemple). You can add an overridden public void setKeyString(String value) { if (value != null) { value = value.toLowerCase(); }

Re: Single thread creation queue?

2021-11-23 Thread Jesse Tayler via Webobjects-dev
> On Nov 23, 2021, at 5:17 PM, Paul Hoadley wrote: > > Are you able to paste in some code? There's probably a solution, but this is > getting a bit hard to follow in the abstract. > So, I fetch first EOQualifier qual =

Re: Single thread creation queue?

2021-11-23 Thread Paul Hoadley via Webobjects-dev
Hi Jesse, On 24 Nov 2021, at 03:19, Jesse Tayler via Webobjects-dev wrote: > Ok wait — I have a question > > I see my qualifier and the constraint needs to be equivalent > > The qualifier has one fixed string and the second string is — > case-insensitive — constraints don’t seem to allow

Re: Single thread creation queue?

2021-11-23 Thread Jesse Tayler via Webobjects-dev
Ok wait — I have a question I see my qualifier and the constraint needs to be equivalent The qualifier has one fixed string and the second string is — case-insensitive — constraints don’t seem to allow this notion? I see a several suggestions on what is clearly the same, common issue - often