I am having a very difficult time with populating a verity index.  I have 
defined the collection with cfserver.  I am using a query to populate 
it.  here is my code blocks, can anyone please tell me what I am doing 
wrong here?
<cfquery datasource="notebooks" name="idx_Entries">
        select notebook_ID,
                   notebook_title
        FROM Notebooks
</cfquery>

<CFINDEX COLLECTION="NotebookTest"
     ACTION="Refresh"
     TYPE="Custom"
     TITLE= "Notebook_ID"
     KEY="Notebook_ID"
     BODY="Notebook_title"
     QUERY="idx_Entries">
<cf_showquery query="idx_Entries"><cfabort>

The cf_showquery will show everything I have selected but nothing is 
searched in the cfsearch tag...here is my code for that:

<CFSEARCH NAME="srch_EntryResults"
            COLLECTION="NotebookTest"
            CRITERIA="Criteria">
<cfoutput>Note entries containing #form.criteria#:<br></cfoutput>
<cf_showquery query="srch_EntryResults">


This showquery shows no results.  Even the recordssearched is not defined, 
as if nothing was searched at all.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to