• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Searching a full name
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Searching a full name


  • Subject: Re: Searching a full name
  • From: William Norris <email@hidden>
  • Date: Sat, 25 Sep 2004 13:19:17 -0500

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:

This email sent to email@hidden

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

  • Prev by Date: Re: Searching a full name
  • Next by Date: Re: Searching a full name
  • Previous by thread: Re: Searching a full name
  • Next by thread: Re: Searching a full name
  • Index(es):
    • Date
    • Thread