Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Searching a full name



On Sat, 25 Sep 2004 18:48:56 +0100, Jonathan Fleming
<email@hidden> wrote:
it's this what is my problem:
> ((firstName like $tradingName) and (lastName like $tradingName)) but could
> make it function correctly so started to add the whitespace column but I
> know for sure that I'm doing something seriously back to front, I just cant
> think so... I need someone's fresh head 'cause mine's is still awash with
> sleep deprivationform this week.... silly me.


(I'm guessing you have a single input box where the user can enter
their full name).  When the form is submitted, $tradingName
potentially holds two pieces of information -- both the user's
firstname as well as their last name.  The easiest (and probably most
logical) thing to do would be to split $tradingName wherever their is
a whitespace and treat each substring as an individual token.  They
might have entered last name first, so you'll want to check each token
against each database field.

for example, if $tradingName had one space in it, and you split it
into two strings, $tn1 and $tn2, your qualifier would look something
like...  (((firstName like $tn1) or (lastName like $tn1)) and
((firstName like $tn2) or (lastName like $tn2))).

This could (and probably should) be expanded a bit to account for
multiple spaces, commas between last and first name, etc.
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/email@hidden

This email sent to email@hidden

References: 
 >Re: Searching a full name (From: "Jonathan Fleming" <email@hidden>)



Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.