If this is the case, a solution would be to do your scanning with
<CFDIRECTORY NAME="fooquery" ... >, and then <CFINDEX TYPE="CUSTOM"
QUERY="fooquery">.

But you will have to figure how to do recursive CFDIRECTORY...

<Jaime/>


> -----Original Message-----
> From: J.Milks [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, October 12, 2000 1:29 PM
> To: CF-Talk
> Subject: Re: Begging now...
>
>
> Does it only work with TYPE="CUSTOM"?
>
> Jim
>
> ----- Original Message -----
> From: "Jaime Garza" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, October 12, 2000 4:18 PM
> Subject: RE: Begging now...
>
>
> > Here is a piece that works for me...
> >
> > <cfquery name="GetPeopleInfoByName" datasource="#Session.datasource#">
> >   SELECT DirPerson.PersonID, DirPerson.isOffice, {fn CONCAT (FirstName,
> {fn
> > CONCAT (' ', LastName)})} AS Name
> >     FROM DirPerson
> >    WHERE DirPerson.PersonID > #LastByName#
> > </cfquery>
> >
> > <cfif GetPeopleInfoByName.RecordCount GT 0>
> >   <cfindex action="#action#"
> >            collection="PeoplefinderByName_for_#Session.datasource#"
> >            key="PersonID"
> >            custom1="PersonID"
> >            custom2="isOffice"
> >            type="CUSTOM"
> >            title="Name"
> >            query="GetPeopleInfoByName"
> >            body="Name">
> > </cfif>
> >
> > <Jaime/>
> >
> >
> >
> > > -----Original Message-----
> > > From: J.Milks [mailto:[EMAIL PROTECTED]]
> > > Sent: Thursday, October 12, 2000 1:07 PM
> > > To: CF-Talk
> > > Subject: Re: Begging now...
> > >
> > >
> > > <CFINDEX  COLLECTION="#Session.intCategory#" TYPE="Path"
> > > ACTION="#txtProcess#"
> > >
> > > KEY="#Application.Library##qryGetCustID.intCustomer#\#SESSION.intS
> > > ite#\#Sess
> > > ion.intCategory#"
> > >         CUSTOM1="#qryGetCatDetails.intCategory#"
> > >     CUSTOM2="#Session.intCategory#"
> > >         TITLE="#qryGetCatDetails.intCategory#"
> > >     RECURSE="Yes"
> > >     EXTENSIONS=".htm, .html, .cfm, .cfml, *., .doc, .wpd, .xls,
> > > .txt, .text,
> > > .pdf">
> > >
> > > Hope this helps...
> > >
> > > Jim

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to